almanac 0.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (127) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +76 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/images/almanac/background.jpg +0 -0
  5. data/app/assets/images/almanac/icons/compose.png +0 -0
  6. data/app/assets/images/almanac/icons/feed.png +0 -0
  7. data/app/assets/images/almanac/icons/gear.png +0 -0
  8. data/app/assets/images/almanac/icons/glyphicons-halflings-white.png +0 -0
  9. data/app/assets/images/almanac/icons/glyphicons-halflings.png +0 -0
  10. data/app/assets/images/almanac/icons/upload.png +0 -0
  11. data/app/assets/images/almanac/logo.jpg +0 -0
  12. data/app/assets/javascripts/almanac/2-jquery.backstretch.js +357 -0
  13. data/app/assets/javascripts/almanac/3-pixastic.js +637 -0
  14. data/app/assets/javascripts/almanac/4-bootstrap-datepicker.js +454 -0
  15. data/app/assets/javascripts/almanac/5-main.coffee.erb +46 -0
  16. data/app/assets/javascripts/almanac/application.js +16 -0
  17. data/app/assets/stylesheets/almanac/1-datepicker.css +7 -0
  18. data/app/assets/stylesheets/almanac/2-main.css.scss +279 -0
  19. data/app/assets/stylesheets/almanac/application.css +15 -0
  20. data/app/controllers/almanac/application_controller.rb +24 -0
  21. data/app/controllers/almanac/blogs_controller.rb +64 -0
  22. data/app/controllers/almanac/comments_controller.rb +41 -0
  23. data/app/controllers/almanac/images_controller.rb +29 -0
  24. data/app/controllers/almanac/posts_controller.rb +109 -0
  25. data/app/helpers/almanac/application_helper.rb +4 -0
  26. data/app/models/almanac/blog.rb +32 -0
  27. data/app/models/almanac/comment.rb +20 -0
  28. data/app/models/almanac/image.rb +10 -0
  29. data/app/models/almanac/post.rb +55 -0
  30. data/app/views/almanac/blogs/_form.html.haml +76 -0
  31. data/app/views/almanac/blogs/_topbar.html.haml +5 -0
  32. data/app/views/almanac/blogs/edit.html.haml +4 -0
  33. data/app/views/almanac/blogs/new.html.haml +3 -0
  34. data/app/views/almanac/blogs/spam.html.haml +15 -0
  35. data/app/views/almanac/posts/_form.html.haml +52 -0
  36. data/app/views/almanac/posts/_post.html.haml +59 -0
  37. data/app/views/almanac/posts/edit.html.haml +1 -0
  38. data/app/views/almanac/posts/index.html.haml +30 -0
  39. data/app/views/almanac/posts/index.rss.builder +18 -0
  40. data/app/views/almanac/posts/new.html.haml +1 -0
  41. data/app/views/almanac/posts/show.html.haml +4 -0
  42. data/app/views/almanac/posts/tag.html.haml +22 -0
  43. data/app/views/layouts/almanac/_ga.html.haml +10 -0
  44. data/app/views/layouts/almanac/_twitter_follow.html.haml +2 -0
  45. data/app/views/layouts/almanac/application.html.haml +52 -0
  46. data/config/routes.rb +22 -0
  47. data/db/migrate/20121009222451_create_almanac_posts.rb +17 -0
  48. data/db/migrate/20121010033555_create_almanac_blogs.rb +14 -0
  49. data/db/migrate/20121017032059_add_excerpt_to_almanac_posts.rb +11 -0
  50. data/db/migrate/20121017210007_create_almanac_files.rb +15 -0
  51. data/db/migrate/20121017221819_rename_file_to_image.rb +9 -0
  52. data/db/migrate/20121025223403_add_image_fields_to_almanac_blogs.rb +13 -0
  53. data/db/migrate/20121029211221_add_new_fields_to_blogs.rb +15 -0
  54. data/db/migrate/20121029221815_acts_as_taggable_on_migration.rb +30 -0
  55. data/db/migrate/20121101030836_create_almanac_comments.rb +16 -0
  56. data/db/migrate/20121102181941_add_rakismet_fields_to_blogs.rb +13 -0
  57. data/db/migrate/20121102185130_add_spam_to_comments.rb +11 -0
  58. data/db/migrate/20121110000024_add_written_at_to_posts.rb +11 -0
  59. data/db/migrate/20121112205256_add_background_fields_to_blogs.rb +13 -0
  60. data/db/migrate/20121113010557_add_footer_to_almanac_blogs.rb +11 -0
  61. data/db/migrate/20121114043648_change_default_value_for_background_tiles_in_almanac_blogs.rb +9 -0
  62. data/lib/almanac.rb +16 -0
  63. data/lib/almanac/MarkdownParser.rb +18 -0
  64. data/lib/almanac/engine.rb +9 -0
  65. data/lib/almanac/version.rb +3 -0
  66. data/lib/tasks/almanac_tasks.rake +4 -0
  67. data/spec/controllers/blogs_controller_spec.rb +80 -0
  68. data/spec/controllers/comments_controller_spec.rb +51 -0
  69. data/spec/controllers/posts_controller_spec.rb +120 -0
  70. data/spec/dummy/README.rdoc +261 -0
  71. data/spec/dummy/Rakefile +7 -0
  72. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  73. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  74. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  75. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  76. data/spec/dummy/app/models/ability.rb +13 -0
  77. data/spec/dummy/app/models/user.rb +11 -0
  78. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  79. data/spec/dummy/config.ru +4 -0
  80. data/spec/dummy/config/application.rb +59 -0
  81. data/spec/dummy/config/boot.rb +10 -0
  82. data/spec/dummy/config/database.yml +25 -0
  83. data/spec/dummy/config/environment.rb +5 -0
  84. data/spec/dummy/config/environments/development.rb +37 -0
  85. data/spec/dummy/config/environments/production.rb +67 -0
  86. data/spec/dummy/config/environments/test.rb +37 -0
  87. data/spec/dummy/config/initializers/almanac.rb +1 -0
  88. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  89. data/spec/dummy/config/initializers/devise.rb +233 -0
  90. data/spec/dummy/config/initializers/dragonfly.rb +7 -0
  91. data/spec/dummy/config/initializers/inflections.rb +15 -0
  92. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  93. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  94. data/spec/dummy/config/initializers/session_store.rb +8 -0
  95. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  96. data/spec/dummy/config/locales/en.yml +5 -0
  97. data/spec/dummy/config/routes.rb +14 -0
  98. data/spec/dummy/db/migrate/20121009230705_create_almanac_posts.rb +18 -0
  99. data/spec/dummy/db/migrate/20121010033827_create_almanac_blogs.rb +15 -0
  100. data/spec/dummy/db/migrate/20121102224650_add_excerpt_to_almanac_posts.rb +12 -0
  101. data/spec/dummy/db/migrate/20121102224651_create_almanac_files..rb +16 -0
  102. data/spec/dummy/db/migrate/20121102224652_rename_file_to_image.rb +10 -0
  103. data/spec/dummy/db/migrate/20121102224653_add_image_fields_to_almanac_blogs.rb +14 -0
  104. data/spec/dummy/db/migrate/20121102224654_add_new_fields_to_almanac_blogs.rb +16 -0
  105. data/spec/dummy/db/migrate/20121102224655_acts_as_taggable_on_migration.rb +31 -0
  106. data/spec/dummy/db/migrate/20121102224656_create_almanac_comments.rb +17 -0
  107. data/spec/dummy/db/migrate/20121102224657_add_rakismet_fields_to_almanac_blogs.rb +14 -0
  108. data/spec/dummy/db/migrate/20121102224658_add_spam_to_almanac_comments.rb +12 -0
  109. data/spec/dummy/db/migrate/20121106220325_devise_create_users.rb +46 -0
  110. data/spec/dummy/db/migrate/20121114032144_add_written_at_to_almanac_posts.rb +12 -0
  111. data/spec/dummy/db/migrate/20121114032145_add_background_fields_to_almanac_blogs.rb +14 -0
  112. data/spec/dummy/db/migrate/20121114032146_add_footer_to_almanac_blogs.rb +12 -0
  113. data/spec/dummy/db/schema.rb +98 -0
  114. data/spec/dummy/db/test.sqlite3 +0 -0
  115. data/spec/dummy/log/production.log +1 -0
  116. data/spec/dummy/log/test.log +2930 -0
  117. data/spec/dummy/public/404.html +26 -0
  118. data/spec/dummy/public/422.html +26 -0
  119. data/spec/dummy/public/500.html +25 -0
  120. data/spec/dummy/public/favicon.ico +0 -0
  121. data/spec/dummy/script/rails +6 -0
  122. data/spec/factories.rb +72 -0
  123. data/spec/models/blog_spec.rb +16 -0
  124. data/spec/models/comment_spec.rb +35 -0
  125. data/spec/models/post_spec.rb +79 -0
  126. data/spec/spec_helper.rb +37 -0
  127. metadata +485 -0
@@ -0,0 +1 @@
1
+ Connecting to database specified by database.yml
@@ -0,0 +1,2930 @@
1
+ Connecting to database specified by database.yml
2
+ SQLite3::CorruptException: database disk image is malformed: SELECT name
3
+ FROM sqlite_master
4
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5
+ AND name = "schema_migrations"
6
+ Connecting to database specified by database.yml
7
+  (0.1ms) select sqlite_version(*)
8
+  (5.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
9
+  (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
10
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
11
+ Migrating to CreateAlmanacPosts (20121009230705)
12
+  (0.0ms) begin transaction
13
+  (0.8ms) 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)
14
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121009230705')
15
+  (10.6ms) commit transaction
16
+ Migrating to CreateAlmanacBlogs (20121010033827)
17
+  (0.1ms) begin transaction
18
+  (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)
19
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121010033827')
20
+  (4.3ms) commit transaction
21
+ Migrating to AddExcerptToAlmanacPosts (20121102224650)
22
+  (0.1ms) begin transaction
23
+  (0.4ms) ALTER TABLE "almanac_posts" ADD "excerpt" text
24
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121102224650')
25
+  (2.9ms) commit transaction
26
+ Migrating to CreateAlmanacFiles (20121102224651)
27
+  (0.0ms) begin transaction
28
+  (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)
29
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121102224651')
30
+  (2.7ms) commit transaction
31
+ Migrating to RenameFileToImage (20121102224652)
32
+  (0.0ms) begin transaction
33
+  (0.4ms) ALTER TABLE "almanac_files" RENAME TO "almanac_images"
34
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121102224652')
35
+  (1.2ms) commit transaction
36
+ Migrating to AddImageFieldsToAlmanacBlogs (20121102224653)
37
+  (0.0ms) begin transaction
38
+  (0.4ms) ALTER TABLE "almanac_blogs" ADD "background_uid" varchar(255)
39
+  (0.1ms) ALTER TABLE "almanac_blogs" ADD "logo_uid" varchar(255)
40
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121102224653')
41
+  (24.9ms) commit transaction
42
+ Migrating to AddNewFieldsToAlmanacBlogs (20121102224654)
43
+  (0.1ms) begin transaction
44
+  (0.0ms) rollback transaction
45
+ Connecting to database specified by database.yml
46
+  (0.1ms) select sqlite_version(*)
47
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
48
+  (8.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
49
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
50
+ Migrating to DeviseCreateUsers (20121106220325)
51
+  (0.0ms) begin transaction
52
+  (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)
53
+  (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
54
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
55
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121106220325')
56
+  (2.6ms) commit transaction
57
+ Migrating to CreateAlmanacPosts (20121114185255)
58
+  (0.0ms) begin transaction
59
+  (0.4ms) 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)
60
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185255')
61
+  (18.3ms) commit transaction
62
+ Migrating to CreateAlmanacBlogs (20121114185256)
63
+  (0.0ms) begin transaction
64
+  (0.5ms) 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)
65
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185256')
66
+  (10.8ms) commit transaction
67
+ Migrating to AddExcerptToAlmanacPosts (20121114185257)
68
+  (0.1ms) begin transaction
69
+  (0.4ms) ALTER TABLE "almanac_posts" ADD "excerpt" text
70
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185257')
71
+  (43.6ms) commit transaction
72
+ Migrating to CreateAlmanacFiles (20121114185258)
73
+  (0.1ms) begin transaction
74
+  (0.4ms) 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)
75
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185258')
76
+  (11.4ms) commit transaction
77
+ Migrating to RenameFileToImage (20121114185259)
78
+  (0.1ms) begin transaction
79
+  (0.5ms) ALTER TABLE "almanac_files" RENAME TO "almanac_images"
80
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185259')
81
+  (1.1ms) commit transaction
82
+ Migrating to AddImageFieldsToAlmanacBlogs (20121114185260)
83
+  (0.0ms) begin transaction
84
+  (0.3ms) ALTER TABLE "almanac_blogs" ADD "background_uid" varchar(255)
85
+  (0.1ms) ALTER TABLE "almanac_blogs" ADD "logo_uid" varchar(255)
86
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185260')
87
+  (2.6ms) commit transaction
88
+ Migrating to AddNewFieldsToBlogs (20121114185261)
89
+  (0.1ms) begin transaction
90
+  (0.4ms) ALTER TABLE "almanac_blogs" ADD "description" text
91
+  (0.1ms) ALTER TABLE "almanac_blogs" ADD "twitter" varchar(255)
92
+  (0.1ms) ALTER TABLE "almanac_blogs" ADD "google_analytics" varchar(255)
93
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185261')
94
+  (3.7ms) commit transaction
95
+ Migrating to ActsAsTaggableOnMigration (20121114185262)
96
+  (0.1ms) begin transaction
97
+  (0.4ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
98
+  (0.7ms) 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)
99
+  (0.1ms) CREATE INDEX "index_taggings_on_tag_id" ON "taggings" ("tag_id")
100
+  (0.1ms) CREATE INDEX "index_taggings_on_taggable_id_and_taggable_type_and_context" ON "taggings" ("taggable_id", "taggable_type", "context")
101
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185262')
102
+  (9.8ms) commit transaction
103
+ Migrating to CreateAlmanacComments (20121114185263)
104
+  (0.1ms) begin transaction
105
+  (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)
106
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185263')
107
+  (19.7ms) commit transaction
108
+ Migrating to AddRakismetFieldsToBlogs (20121114185264)
109
+  (0.1ms) begin transaction
110
+  (0.4ms) ALTER TABLE "almanac_blogs" ADD "rakismet_key" varchar(255)
111
+  (0.1ms) ALTER TABLE "almanac_blogs" ADD "rakismet_url" varchar(255)
112
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185264')
113
+  (9.7ms) commit transaction
114
+ Migrating to AddSpamToComments (20121114185265)
115
+  (0.1ms) begin transaction
116
+  (0.4ms) ALTER TABLE "almanac_comments" ADD "spam" boolean DEFAULT 'f'
117
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185265')
118
+  (1.2ms) commit transaction
119
+ Migrating to AddWrittenAtToPosts (20121114185266)
120
+  (0.0ms) begin transaction
121
+  (0.4ms) ALTER TABLE "almanac_posts" ADD "written_at" date
122
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185266')
123
+  (10.8ms) commit transaction
124
+ Migrating to AddBackgroundFieldsToBlogs (20121114185267)
125
+  (0.1ms) begin transaction
126
+  (0.5ms) ALTER TABLE "almanac_blogs" ADD "background_tile" boolean DEFAULT 'f'
127
+  (0.2ms) ALTER TABLE "almanac_blogs" ADD "background_blur" integer DEFAULT 0
128
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185267')
129
+  (10.8ms) commit transaction
130
+ Migrating to AddFooterToAlmanacBlogs (20121114185268)
131
+  (0.1ms) begin transaction
132
+  (0.4ms) ALTER TABLE "almanac_blogs" ADD "footer" text
133
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185268')
134
+  (1.2ms) commit transaction
135
+ Migrating to ChangeDefaultValueForBackgroundTilesInAlmanacBlogs (20121114185269)
136
+  (0.0ms) begin transaction
137
+  (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)
138
+  (0.1ms) SELECT * FROM "almanac_blogs"
139
+  (0.2ms) DROP TABLE "almanac_blogs"
140
+  (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) 
141
+  (0.1ms) SELECT * FROM "altered_almanac_blogs"
142
+  (0.3ms) DROP TABLE "altered_almanac_blogs"
143
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185269')
144
+  (2.0ms) commit transaction
145
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
146
+ Connecting to database specified by database.yml
147
+  (71.0ms) DELETE FROM "users";
148
+  (21.6ms) DELETE FROM sqlite_sequence where name = 'users';
149
+  (14.6ms) DELETE FROM "almanac_posts";
150
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'almanac_posts';
151
+  (47.8ms) DELETE FROM "almanac_images";
152
+  (0.3ms) DELETE FROM sqlite_sequence where name = 'almanac_images';
153
+  (3.5ms) DELETE FROM "tags";
154
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'tags';
155
+  (44.9ms) DELETE FROM "taggings";
156
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'taggings';
157
+  (14.9ms) DELETE FROM "almanac_comments";
158
+  (0.3ms) DELETE FROM sqlite_sequence where name = 'almanac_comments';
159
+  (29.4ms) DELETE FROM "almanac_blogs";
160
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'almanac_blogs';
161
+  (0.1ms) begin transaction
162
+  (0.1ms) SAVEPOINT active_record_1
163
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'flavio@example.com' LIMIT 1
164
+ Binary data inserted for `string` type on column `encrypted_password`
165
+ SQL (38.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "flavio@example.com"], ["encrypted_password", "$2a$04$Hhs9odJPHI.kYamkm3.aeueskiQMjlLWMq01Fj8ygnVEXl3kxI4K."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00]]
166
+  (0.1ms) RELEASE SAVEPOINT active_record_1
167
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
168
+  (0.1ms) SAVEPOINT active_record_1
169
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
170
+ 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", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["description", "Et ea rerum. Nemo itaque consequatur et pariatur quia. Iusto autem facere ab ut. Repellat ea ipsum cumque et id sed deleniti. Impedit omnis doloribus autem aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolore a vel."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00]]
171
+  (0.0ms) RELEASE SAVEPOINT active_record_1
172
+  (0.0ms) SAVEPOINT active_record_1
173
+ SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Eum laudantium harum vero. Magnam beatae architecto. Est vel velit. Ut voluptas maxime eaque ducimus ipsum quo. Sed repudiandae necessitatibus maxime. Ut aut ut quia architecto explicabo blanditiis."], ["created_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["excerpt", "Suscipit vel."], ["published", true], ["title", "Velit sit recusandae temporibus deleniti."], ["updated_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
174
+ ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test1' OR lower(name) = 'rspec1' OR lower(name) = 'ruby1' OR lower(name) = '#rails1')
175
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
176
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
177
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test1' LIMIT 1
178
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test1"]]
179
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec1' LIMIT 1
180
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec1"]]
181
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby1' LIMIT 1
182
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby1"]]
183
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails1' LIMIT 1
184
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails1"]]
185
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
186
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
187
+ SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
188
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
189
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
190
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
191
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
192
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
193
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
194
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
195
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
196
+  (0.0ms) RELEASE SAVEPOINT active_record_1
197
+  (0.0ms) SAVEPOINT active_record_1
198
+ 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
199
+ SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "denis_rutherford@example.com"], ["author_name", "Nels Smitham MD"], ["body", "Non ad et id. Quam reiciendis delectus et velit harum iure. Cum a voluptates deleniti cumque rerum illo quae."], ["created_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00]]
200
+  (0.0ms) RELEASE SAVEPOINT active_record_1
201
+ Processing by Almanac::CommentsController#destroy as HTML
202
+ Parameters: {"id"=>"1", "post_id"=>"1"}
203
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
204
+ Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]
205
+ 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"]]
206
+ Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]
207
+  (0.0ms) SAVEPOINT active_record_1
208
+ SQL (0.1ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]
209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
210
+ Redirected to http://test.host/almanac/1
211
+ Completed 302 Found in 8ms (ActiveRecord: 0.5ms)
212
+  (2.7ms) rollback transaction
213
+  (0.1ms) begin transaction
214
+  (0.0ms) SAVEPOINT active_record_1
215
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'federico.hettinger@example.org' LIMIT 1
216
+ Binary data inserted for `string` type on column `encrypted_password`
217
+ 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", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "federico.hettinger@example.org"], ["encrypted_password", "$2a$04$R44MqJyuWVmnRj9C.GczweAzJ.Md52uwArtq4ux5kl1/ni5bxLyd."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00]]
218
+  (0.0ms) RELEASE SAVEPOINT active_record_1
219
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
220
+  (0.0ms) SAVEPOINT active_record_1
221
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
222
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["description", "Sit ea perspiciatis. Qui vero sapiente. Consequuntur cupiditate ullam. Voluptatem rerum possimus voluptatem et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "In quae nihil."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00]]
223
+  (0.0ms) RELEASE SAVEPOINT active_record_1
224
+  (0.0ms) SAVEPOINT active_record_1
225
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 3], ["blog_id", 1], ["body", "A id quia blanditiis magnam explicabo est in. Voluptas alias laudantium fugiat quaerat quasi voluptates eum. Est dolores accusantium ut non. Est architecto qui aspernatur. Ut molestias et molestiae."], ["created_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["excerpt", "Illum animi saepe facilis architecto."], ["published", true], ["title", "Consequatur nam quia quod quia ut praesentium."], ["updated_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
226
+ 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')
227
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
228
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
229
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test2' LIMIT 1
230
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test2"]]
231
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec2' LIMIT 1
232
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec2"]]
233
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby2' LIMIT 1
234
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby2"]]
235
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails2' LIMIT 1
236
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails2"]]
237
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
238
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
239
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
240
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
241
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
242
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
243
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
244
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
245
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
246
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
247
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
248
+  (0.0ms) RELEASE SAVEPOINT active_record_1
249
+  (0.0ms) SAVEPOINT active_record_1
250
+ 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
251
+ SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "anne_block@example.com"], ["author_name", "Mr. Jamison Conroy"], ["body", "Impedit unde est."], ["created_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:42 UTC +00:00]]
252
+  (0.0ms) RELEASE SAVEPOINT active_record_1
253
+  (0.1ms) SELECT COUNT(*) FROM "almanac_comments" 
254
+ Processing by Almanac::CommentsController#destroy as HTML
255
+ Parameters: {"id"=>"1", "post_id"=>"1"}
256
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
257
+ Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]
258
+ 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"]]
259
+ Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]
260
+  (0.0ms) SAVEPOINT active_record_1
261
+ SQL (0.1ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]
262
+  (0.0ms) RELEASE SAVEPOINT active_record_1
263
+ Redirected to http://test.host/almanac/1
264
+ Completed 302 Found in 7ms (ActiveRecord: 0.4ms)
265
+  (0.1ms) SELECT COUNT(*) FROM "almanac_comments" 
266
+  (4.2ms) rollback transaction
267
+  (0.1ms) begin transaction
268
+  (0.0ms) SAVEPOINT active_record_1
269
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'flavio@example.com' LIMIT 1
270
+ Binary data inserted for `string` type on column `encrypted_password`
271
+ 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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "flavio@example.com"], ["encrypted_password", "$2a$04$.fOKGBo.pQoff9cMUCBa6uBRPX.NILHLNbiP4pslUn.nqQxBHGH9m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
272
+  (0.0ms) RELEASE SAVEPOINT active_record_1
273
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
274
+  (0.0ms) SAVEPOINT active_record_1
275
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
276
+ 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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["description", "Et ea rerum. Nemo itaque consequatur et pariatur quia. Iusto autem facere ab ut. Repellat ea ipsum cumque et id sed deleniti. Impedit omnis doloribus autem aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolore a vel."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
277
+  (0.0ms) RELEASE SAVEPOINT active_record_1
278
+  (0.0ms) SAVEPOINT active_record_1
279
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 5], ["blog_id", 1], ["body", "Eum laudantium harum vero. Magnam beatae architecto. Est vel velit. Ut voluptas maxime eaque ducimus ipsum quo. Sed repudiandae necessitatibus maxime. Ut aut ut quia architecto explicabo blanditiis."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["excerpt", "Suscipit vel."], ["published", true], ["title", "Velit sit recusandae temporibus deleniti."], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
280
+ 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')
281
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
282
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
283
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test3' LIMIT 1
284
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test3"]]
285
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec3' LIMIT 1
286
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec3"]]
287
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby3' LIMIT 1
288
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby3"]]
289
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails3' LIMIT 1
290
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails3"]]
291
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
292
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
293
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
294
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
295
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
296
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
297
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
298
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
299
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
300
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
301
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
302
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303
+ Processing by Almanac::CommentsController#create as HTML
304
+ Parameters: {"comment"=>{"author_name"=>"Nels Smitham MD", "author_email"=>"denis_rutherford@example.com", "body"=>"Non ad et id. Quam reiciendis delectus et velit harum iure. Cum a voluptates deleniti cumque rerum illo quae."}, "post_id"=>"1"}
305
+ Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
306
+ 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"]]
307
+  (0.0ms) SAVEPOINT active_record_1
308
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "denis_rutherford@example.com"], ["author_name", "Nels Smitham MD"], ["body", "Non ad et id. Quam reiciendis delectus et velit harum iure. Cum a voluptates deleniti cumque rerum illo quae."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
309
+  (0.0ms) RELEASE SAVEPOINT active_record_1
310
+ Redirected to http://test.host/almanac/1
311
+ Completed 302 Found in 8ms (ActiveRecord: 0.6ms)
312
+  (2.9ms) rollback transaction
313
+  (0.0ms) begin transaction
314
+  (0.0ms) SAVEPOINT active_record_1
315
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'federico.hettinger@example.org' LIMIT 1
316
+ Binary data inserted for `string` type on column `encrypted_password`
317
+ 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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "federico.hettinger@example.org"], ["encrypted_password", "$2a$04$CID0lBn/PeiyAlHdyJxFCuDKckhE7ykt3X4yR42JkptmweFlUfmFm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
318
+  (0.0ms) RELEASE SAVEPOINT active_record_1
319
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
320
+  (0.0ms) SAVEPOINT active_record_1
321
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
322
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["description", "Sit ea perspiciatis. Qui vero sapiente. Consequuntur cupiditate ullam. Voluptatem rerum possimus voluptatem et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "In quae nihil."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
323
+  (0.0ms) RELEASE SAVEPOINT active_record_1
324
+  (0.0ms) SAVEPOINT active_record_1
325
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 7], ["blog_id", 1], ["body", "A id quia blanditiis magnam explicabo est in. Voluptas alias laudantium fugiat quaerat quasi voluptates eum. Est dolores accusantium ut non. Est architecto qui aspernatur. Ut molestias et molestiae."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["excerpt", "Illum animi saepe facilis architecto."], ["published", true], ["title", "Consequatur nam quia quod quia ut praesentium."], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
326
+ 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')
327
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
328
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
329
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test4' LIMIT 1
330
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test4"]]
331
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec4' LIMIT 1
332
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec4"]]
333
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby4' LIMIT 1
334
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby4"]]
335
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails4' LIMIT 1
336
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails4"]]
337
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
338
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
339
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
340
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
341
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
342
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
343
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
344
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
345
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
346
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
347
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
348
+  (0.0ms) RELEASE SAVEPOINT active_record_1
349
+  (0.0ms) SELECT COUNT(*) FROM "almanac_comments" 
350
+ Processing by Almanac::CommentsController#create as HTML
351
+ Parameters: {"comment"=>{"author_name"=>"Mr. Jamison Conroy", "author_email"=>"anne_block@example.com", "body"=>nil}, "post_id"=>"1"}
352
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
353
+ 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"]]
354
+  (0.0ms) SAVEPOINT active_record_1
355
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
356
+ Redirected to http://test.host/almanac/1
357
+ Completed 302 Found in 10ms (ActiveRecord: 0.3ms)
358
+  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"
359
+  (0.7ms) rollback transaction
360
+  (0.0ms) begin transaction
361
+  (0.0ms) SAVEPOINT active_record_1
362
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'flavio@example.com' LIMIT 1
363
+ Binary data inserted for `string` type on column `encrypted_password`
364
+ 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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "flavio@example.com"], ["encrypted_password", "$2a$04$WOCox/kj/pBDMIwNO0ETBOV.7GfrhQVL7fpA.PF66t05zCr3/OqAW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
365
+  (0.0ms) RELEASE SAVEPOINT active_record_1
366
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
367
+  (0.0ms) SAVEPOINT active_record_1
368
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
369
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["description", "Et ea rerum. Nemo itaque consequatur et pariatur quia. Iusto autem facere ab ut. Repellat ea ipsum cumque et id sed deleniti. Impedit omnis doloribus autem aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolore a vel."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
370
+  (0.0ms) RELEASE SAVEPOINT active_record_1
371
+  (0.0ms) SAVEPOINT active_record_1
372
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 9], ["blog_id", 1], ["body", "Eum laudantium harum vero. Magnam beatae architecto. Est vel velit. Ut voluptas maxime eaque ducimus ipsum quo. Sed repudiandae necessitatibus maxime. Ut aut ut quia architecto explicabo blanditiis."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["excerpt", "Suscipit vel."], ["published", true], ["title", "Velit sit recusandae temporibus deleniti."], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
373
+ 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')
374
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
375
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
376
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test5' LIMIT 1
377
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test5"]]
378
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec5' LIMIT 1
379
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec5"]]
380
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby5' LIMIT 1
381
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby5"]]
382
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails5' LIMIT 1
383
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails5"]]
384
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
385
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
386
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
387
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
388
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
389
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
390
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
391
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
392
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
393
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
394
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
395
+  (0.0ms) RELEASE SAVEPOINT active_record_1
396
+ Processing by Almanac::CommentsController#create as HTML
397
+ Parameters: {"comment"=>{"author_name"=>"Nels Smitham MD", "author_email"=>"denis_rutherford@example.com", "body"=>"Non ad et id. Quam reiciendis delectus et velit harum iure. Cum a voluptates deleniti cumque rerum illo quae."}, "post_id"=>"1"}
398
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
399
+ 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"]]
400
+  (0.0ms) SAVEPOINT active_record_1
401
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "denis_rutherford@example.com"], ["author_name", "Nels Smitham MD"], ["body", "Non ad et id. Quam reiciendis delectus et velit harum iure. Cum a voluptates deleniti cumque rerum illo quae."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
402
+  (0.0ms) RELEASE SAVEPOINT active_record_1
403
+ Redirected to http://test.host/almanac/1
404
+ Completed 302 Found in 7ms (ActiveRecord: 0.5ms)
405
+  (1.1ms) rollback transaction
406
+  (0.0ms) begin transaction
407
+  (0.0ms) SAVEPOINT active_record_1
408
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'federico.hettinger@example.org' LIMIT 1
409
+ Binary data inserted for `string` type on column `encrypted_password`
410
+ 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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "federico.hettinger@example.org"], ["encrypted_password", "$2a$04$OnbgtGZ4Brzxc.N6ywk4reOVUr7ZzzpVkf8BDWTU3Y3.WJ717nWhy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
412
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
413
+  (0.1ms) SAVEPOINT active_record_1
414
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
415
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["description", "Sit ea perspiciatis. Qui vero sapiente. Consequuntur cupiditate ullam. Voluptatem rerum possimus voluptatem et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "In quae nihil."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
416
+  (0.0ms) RELEASE SAVEPOINT active_record_1
417
+  (0.0ms) SAVEPOINT active_record_1
418
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 11], ["blog_id", 1], ["body", "A id quia blanditiis magnam explicabo est in. Voluptas alias laudantium fugiat quaerat quasi voluptates eum. Est dolores accusantium ut non. Est architecto qui aspernatur. Ut molestias et molestiae."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["excerpt", "Illum animi saepe facilis architecto."], ["published", true], ["title", "Consequatur nam quia quod quia ut praesentium."], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
419
+ 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')
420
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
421
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
422
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test6' LIMIT 1
423
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test6"]]
424
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec6' LIMIT 1
425
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec6"]]
426
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby6' LIMIT 1
427
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby6"]]
428
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails6' LIMIT 1
429
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails6"]]
430
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
431
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
432
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
433
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
434
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
435
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
436
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
437
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
438
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
439
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
440
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
441
+  (0.0ms) RELEASE SAVEPOINT active_record_1
442
+  (0.0ms) SELECT COUNT(*) FROM "almanac_comments"
443
+ Processing by Almanac::CommentsController#create as HTML
444
+ Parameters: {"comment"=>{"author_name"=>"Mr. Jamison Conroy", "author_email"=>"anne_block@example.com", "body"=>"Impedit unde est."}, "post_id"=>"1"}
445
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
446
+ 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"]]
447
+  (0.0ms) SAVEPOINT active_record_1
448
+ SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "anne_block@example.com"], ["author_name", "Mr. Jamison Conroy"], ["body", "Impedit unde est."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
449
+  (0.1ms) RELEASE SAVEPOINT active_record_1
450
+ Redirected to http://test.host/almanac/1
451
+ Completed 302 Found in 8ms (ActiveRecord: 0.6ms)
452
+  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"
453
+  (5.8ms) rollback transaction
454
+  (0.1ms) begin transaction
455
+  (0.0ms) SAVEPOINT active_record_1
456
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'flavio@example.com' LIMIT 1
457
+ Binary data inserted for `string` type on column `encrypted_password`
458
+ 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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "flavio@example.com"], ["encrypted_password", "$2a$04$JOKVd.TgejipawZVvDmPV.DiAk7c2pC5skaAQoqjR70iVUvz1enCq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
459
+  (0.0ms) RELEASE SAVEPOINT active_record_1
460
+  (0.0ms) SAVEPOINT active_record_1
461
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
462
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["description", "Dolores nam iusto nulla itaque perferendis nobis consequatur. Eum laudantium harum vero. Magnam beatae architecto. Est vel velit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Velit sit recusandae temporibus."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
463
+  (0.1ms) RELEASE SAVEPOINT active_record_1
464
+ Processing by Almanac::BlogsController#update as HTML
465
+ Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Architecto quas et. Dicta magnam nam. Ut aut mollitia quia maiores officiis.", "author_id"=>"14"}}
466
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
467
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]
468
+  (0.0ms) SAVEPOINT active_record_1
469
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
470
+ Completed 200 OK in 99ms (Views: 92.7ms | ActiveRecord: 0.3ms)
471
+  (28.7ms) rollback transaction
472
+  (0.1ms) begin transaction
473
+  (0.0ms) SAVEPOINT active_record_1
474
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jabari@example.com' LIMIT 1
475
+ Binary data inserted for `string` type on column `encrypted_password`
476
+ 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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jabari@example.com"], ["encrypted_password", "$2a$04$POKQZaZzCJZsMXhlxGtw6eGfQBUb5s3W96cxoxb/C5EgxnHzpSHdy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
477
+  (0.0ms) RELEASE SAVEPOINT active_record_1
478
+  (0.0ms) SAVEPOINT active_record_1
479
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
480
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["description", "Magni dolores voluptatem nihil. In et tenetur inventore. Architecto atque tenetur fuga et accusantium possimus id."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nihil dolor dolores sapiente vel quos reprehenderit."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
481
+  (0.0ms) RELEASE SAVEPOINT active_record_1
482
+ Processing by Almanac::BlogsController#update as HTML
483
+ Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Necessitatibus voluptatibus magni ipsam doloremque eum ut consequatur. Voluptatem aut iure autem sit blanditiis molestiae enim. Deleniti rerum occaecati velit ab illum fugit. Et voluptatem expedita iure. Doloremque repellendus non.", "author_id"=>"16"}}
484
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
485
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]
486
+  (0.0ms) SAVEPOINT active_record_1
487
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
488
+ Completed 200 OK in 7ms (Views: 1.5ms | ActiveRecord: 0.2ms)
489
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]
490
+  (0.9ms) rollback transaction
491
+  (0.0ms) begin transaction
492
+  (0.0ms) SAVEPOINT active_record_1
493
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'flavio@example.com' LIMIT 1
494
+ Binary data inserted for `string` type on column `encrypted_password`
495
+ 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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "flavio@example.com"], ["encrypted_password", "$2a$04$1.O/kMq5VzbUHQeH6NJuQeLH8CJx7Jess4d85MCrsbZO1CUt2y/o2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
496
+  (0.0ms) RELEASE SAVEPOINT active_record_1
497
+  (0.0ms) SAVEPOINT active_record_1
498
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
499
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["description", "Dolores nam iusto nulla itaque perferendis nobis consequatur. Eum laudantium harum vero. Magnam beatae architecto. Est vel velit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Velit sit recusandae temporibus."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
500
+  (0.0ms) RELEASE SAVEPOINT active_record_1
501
+ Processing by Almanac::BlogsController#update as HTML
502
+ Parameters: {"id"=>"1", "blog"=>{"title"=>"Ut voluptas maxime eaque ducimus ipsum.", "description"=>"Dicta magnam nam. Ut aut mollitia quia maiores officiis. Dolore a vel magni. Fugiat quo tenetur minus quia.", "author_id"=>"18"}}
503
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
504
+ Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]
505
+  (0.0ms) SAVEPOINT active_record_1
506
+  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Ut voluptas maxime eaque ducimus ipsum.', "description" = 'Dicta magnam nam. Ut aut mollitia quia maiores officiis. Dolore a vel magni. Fugiat quo tenetur minus quia.', "author_id" = 18, "updated_at" = '2012-11-14 18:53:43.445691' WHERE "almanac_blogs"."id" = 1
507
+  (0.0ms) RELEASE SAVEPOINT active_record_1
508
+ Redirected to http://test.host/almanac/
509
+ Completed 302 Found in 6ms (ActiveRecord: 0.3ms)
510
+  (24.4ms) rollback transaction
511
+  (0.1ms) begin transaction
512
+  (0.0ms) SAVEPOINT active_record_1
513
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'enid.champlin@example.net' LIMIT 1
514
+ Binary data inserted for `string` type on column `encrypted_password`
515
+ 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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "enid.champlin@example.net"], ["encrypted_password", "$2a$04$PzMLCVVPSjmS7ZIjV.4Ad.cQGZ8hIAeAImHBroIxwSLBpe67zE906"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
516
+  (0.0ms) RELEASE SAVEPOINT active_record_1
517
+  (0.0ms) SAVEPOINT active_record_1
518
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
519
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["description", "Eos nemo consequatur deleniti consequuntur. Necessitatibus voluptatibus magni ipsam doloremque eum ut consequatur. Voluptatem aut iure autem sit blanditiis molestiae enim. Deleniti rerum occaecati velit ab illum fugit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quisquam incidunt nihil tempora eius eos consequatur."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
520
+  (0.0ms) RELEASE SAVEPOINT active_record_1
521
+ Processing by Almanac::BlogsController#update as HTML
522
+ Parameters: {"id"=>"1", "blog"=>{"title"=>"Testz", "description"=>"Et eos sunt dolor enim sed et. Sed corrupti error. Et sunt sed necessitatibus alias. Est magnam ea voluptas itaque.", "author_id"=>"20"}}
523
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
524
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]
525
+  (0.0ms) SAVEPOINT active_record_1
526
+  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Testz', "description" = 'Et eos sunt dolor enim sed et. Sed corrupti error. Et sunt sed necessitatibus alias. Est magnam ea voluptas itaque.', "author_id" = 20, "updated_at" = '2012-11-14 18:53:43.487795' WHERE "almanac_blogs"."id" = 1
527
+  (0.0ms) RELEASE SAVEPOINT active_record_1
528
+ Redirected to http://test.host/almanac/
529
+ Completed 302 Found in 5ms (ActiveRecord: 0.3ms)
530
+ Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]
531
+  (1.0ms) rollback transaction
532
+  (0.0ms) begin transaction
533
+  (0.0ms) SAVEPOINT active_record_1
534
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'flavio@example.com' LIMIT 1
535
+ Binary data inserted for `string` type on column `encrypted_password`
536
+ 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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "flavio@example.com"], ["encrypted_password", "$2a$04$zKIxxM2PVDl6wLIjl.o5AOQD5PaeCPy4KxwI6hdZSqQ3GNZPWPmeu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
537
+  (0.0ms) RELEASE SAVEPOINT active_record_1
538
+  (0.0ms) SAVEPOINT active_record_1
539
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
540
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["description", "Dolores nam iusto nulla itaque perferendis nobis consequatur. Eum laudantium harum vero. Magnam beatae architecto. Est vel velit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Velit sit recusandae temporibus."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
541
+  (0.0ms) RELEASE SAVEPOINT active_record_1
542
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
543
+  (0.0ms) SAVEPOINT active_record_1
544
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 22], ["blog_id", 1], ["body", "Ut aut mollitia quia maiores officiis. Dolore a vel magni. Fugiat quo tenetur minus quia. Asperiores voluptatem alias iusto. Eveniet exercitationem et nemo aliquam quia."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["excerpt", "Sed repudiandae."], ["published", true], ["title", "Ut voluptas maxime eaque ducimus ipsum quo."], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
545
+ 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')
546
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
547
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
548
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test7' LIMIT 1
549
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test7"]]
550
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec7' LIMIT 1
551
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec7"]]
552
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby7' LIMIT 1
553
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby7"]]
554
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails7' LIMIT 1
555
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails7"]]
556
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
557
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
558
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
559
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
560
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
561
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
562
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
563
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
564
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
565
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
566
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
567
+  (0.0ms) RELEASE SAVEPOINT active_record_1
568
+  (0.0ms) SAVEPOINT active_record_1
569
+ SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "cecile@example.net"], ["author_name", "Ms. Leonard Gutkowski"], ["body", "Vel voluptates id eveniet illo beatae vitae consequatur. In voluptatem unde eos distinctio laborum."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
570
+  (0.0ms) RELEASE SAVEPOINT active_record_1
571
+  (0.0ms) SAVEPOINT active_record_1
572
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "paxton.murphy@example.com"], ["author_name", "Mr. Brooklyn Armstrong"], ["body", "Doloremque assumenda aut et asperiores quia id ut. Et eos sunt dolor enim sed et."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
573
+  (0.0ms) RELEASE SAVEPOINT active_record_1
574
+  (0.0ms) SAVEPOINT active_record_1
575
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "meaghan@example.com"], ["author_name", "Cheyenne Weber"], ["body", "Laborum hic repudiandae tenetur. Sit dolorem quia ex consequatur eius."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
576
+  (0.0ms) RELEASE SAVEPOINT active_record_1
577
+  (0.0ms) SAVEPOINT active_record_1
578
+ SQL (0.4ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "nickolas.graham@example.net"], ["author_name", "Brooke Bauch PhD"], ["body", "Qui ipsam quod pariatur consequatur. Dicta tempora sunt molestiae sit saepe magni. Alias et qui reiciendis quis."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
579
+  (0.1ms) RELEASE SAVEPOINT active_record_1
580
+  (0.0ms) SAVEPOINT active_record_1
581
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "raina_rowe@example.com"], ["author_name", "Miller Larkin PhD"], ["body", "Quasi pariatur non nulla maiores id ducimus voluptas. Iusto illo accusantium dolorum explicabo sunt voluptate ducimus. Quisquam atque et accusantium beatae voluptas."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
582
+  (0.0ms) RELEASE SAVEPOINT active_record_1
583
+  (0.0ms) SAVEPOINT active_record_1
584
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "margarett_rogahn@example.com"], ["author_name", "Madisyn Turner"], ["body", "Laboriosam illo rerum ipsam velit."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
585
+  (0.0ms) RELEASE SAVEPOINT active_record_1
586
+  (0.0ms) SAVEPOINT active_record_1
587
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "demetrius.casper@example.com"], ["author_name", "Mr. Terry Baumbach"], ["body", "Maiores perferendis quaerat quidem aut asperiores tenetur a. Voluptatem velit repudiandae eos enim laborum ex fugit."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
588
+  (0.0ms) RELEASE SAVEPOINT active_record_1
589
+  (0.0ms) SAVEPOINT active_record_1
590
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "else@example.com"], ["author_name", "Aryanna Quitzon"], ["body", "Assumenda tenetur provident rem cupiditate deleniti. Harum rerum error sit. Sit odio molestiae dolores et unde consequuntur."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
591
+  (0.0ms) RELEASE SAVEPOINT active_record_1
592
+  (0.0ms) SAVEPOINT active_record_1
593
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "nicholaus@example.net"], ["author_name", "Dr. Sean Lowe"], ["body", "Magni dolorem distinctio consequatur praesentium ipsam ea."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
594
+  (0.0ms) RELEASE SAVEPOINT active_record_1
595
+  (0.0ms) SAVEPOINT active_record_1
596
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "urban@example.net"], ["author_name", "Destinee Ward"], ["body", "Aliquid veritatis eligendi. Quia ipsam ut sunt et fugiat quo."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
597
+  (0.0ms) RELEASE SAVEPOINT active_record_1
598
+  (0.0ms) SAVEPOINT active_record_1
599
+ 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
600
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "gladyce_stokes@example.net"], ["author_name", "Candice Rowe"], ["body", "Ea hic sunt asperiores est ut porro."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
601
+  (0.0ms) RELEASE SAVEPOINT active_record_1
602
+  (0.0ms) SAVEPOINT active_record_1
603
+ 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
604
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "milo_effertz@example.com"], ["author_name", "Cameron Rosenbaum"], ["body", "Ea odit eligendi ut vitae ad quae illo. Pariatur ipsum voluptate commodi similique ut ea. Dicta iste saepe ut."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
605
+  (0.0ms) RELEASE SAVEPOINT active_record_1
606
+  (0.0ms) SAVEPOINT active_record_1
607
+ 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
608
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "eldridge@example.org"], ["author_name", "Anastacio Hodkiewicz"], ["body", "Sit voluptatibus voluptatum quia et ratione. Veritatis eveniet et sed. Perspiciatis illo cum."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
609
+  (0.0ms) RELEASE SAVEPOINT active_record_1
610
+  (0.0ms) SAVEPOINT active_record_1
611
+ 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
612
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "karley.reichel@example.com"], ["author_name", "Mr. Casimer Halvorson"], ["body", "Mollitia unde consequatur ea amet. Fugiat quasi beatae quos."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
613
+  (0.0ms) RELEASE SAVEPOINT active_record_1
614
+  (0.0ms) SAVEPOINT active_record_1
615
+ 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
616
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "alfreda@example.org"], ["author_name", "Luisa Bergstrom"], ["body", "Ratione ipsa atque. Itaque a soluta eum tempora architecto."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
617
+  (0.0ms) RELEASE SAVEPOINT active_record_1
618
+ Processing by Almanac::BlogsController#spam as HTML
619
+ Parameters: {"id"=>"1"}
620
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
621
+ Completed 200 OK in 80ms (Views: 34.2ms | ActiveRecord: 0.1ms)
622
+  (18.5ms) rollback transaction
623
+  (0.1ms) begin transaction
624
+  (0.0ms) SAVEPOINT active_record_1
625
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'obie@example.org' LIMIT 1
626
+ Binary data inserted for `string` type on column `encrypted_password`
627
+ 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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "obie@example.org"], ["encrypted_password", "$2a$04$Z0PXs2K24cceJ.h.elmuNeXkDvByLsLg3jBcdHqcbyT1u.VxrKT6S"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
628
+  (0.0ms) RELEASE SAVEPOINT active_record_1
629
+  (0.0ms) SAVEPOINT active_record_1
630
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
631
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["description", "Nihil id autem magnam. Doloremque sed qui tempora necessitatibus voluptate quis iure. In nihil quo repudiandae accusantium. Enim aut impedit. Amet modi consectetur sapiente nesciunt rerum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dicta quia ut."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
632
+  (0.0ms) RELEASE SAVEPOINT active_record_1
633
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
634
+  (0.0ms) SAVEPOINT active_record_1
635
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 24], ["blog_id", 1], ["body", "Quas in labore blanditiis velit et. Sed autem sunt corrupti voluptatem vero modi. Enim velit assumenda sapiente. Dolor sint minima qui aliquam sit. Molestiae unde quas quidem vero."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["excerpt", "Totam."], ["published", true], ["title", "Est tempore omnis est quod eum et aut."], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
636
+ 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')
637
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
638
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
639
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test8' LIMIT 1
640
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test8"]]
641
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec8' LIMIT 1
642
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec8"]]
643
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby8' LIMIT 1
644
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby8"]]
645
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails8' LIMIT 1
646
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails8"]]
647
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
648
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
649
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
650
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
651
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
652
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
653
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
654
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
655
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
656
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
657
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
658
+  (0.0ms) RELEASE SAVEPOINT active_record_1
659
+  (0.0ms) SAVEPOINT active_record_1
660
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "gunner@example.net"], ["author_name", "Miss Norma McLaughlin"], ["body", "Optio quia cumque accusantium aspernatur sit vero et. Enim non veritatis impedit ut autem debitis. Temporibus animi fuga laboriosam."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
661
+  (0.0ms) RELEASE SAVEPOINT active_record_1
662
+  (0.0ms) SAVEPOINT active_record_1
663
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "shyanne@example.net"], ["author_name", "Price Greenholt Jr."], ["body", "Nesciunt iste est sed perspiciatis at."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
664
+  (0.0ms) RELEASE SAVEPOINT active_record_1
665
+  (0.0ms) SAVEPOINT active_record_1
666
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "tiana@example.org"], ["author_name", "Janie Moore"], ["body", "Repudiandae provident eius enim enim voluptatem ex. Omnis quis est praesentium labore qui dicta numquam."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
667
+  (0.0ms) RELEASE SAVEPOINT active_record_1
668
+  (0.0ms) SAVEPOINT active_record_1
669
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "valerie@example.net"], ["author_name", "Rhett Rau V"], ["body", "Placeat harum aut culpa libero dolores."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
670
+  (0.0ms) RELEASE SAVEPOINT active_record_1
671
+  (0.0ms) SAVEPOINT active_record_1
672
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "nikki@example.com"], ["author_name", "Mona Heathcote"], ["body", "Nemo sit sapiente cum et sit. Aut officiis rerum."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
673
+  (0.0ms) RELEASE SAVEPOINT active_record_1
674
+  (0.0ms) SAVEPOINT active_record_1
675
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "austyn_kovacek@example.com"], ["author_name", "Sylvan Romaguera"], ["body", "Laboriosam dignissimos veritatis iste officia accusamus. Quasi repellendus debitis et eligendi aut ipsum nihil."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
676
+  (0.0ms) RELEASE SAVEPOINT active_record_1
677
+  (0.0ms) SAVEPOINT active_record_1
678
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "concepcion_nikolaus@example.org"], ["author_name", "Rocio Stehr"], ["body", "Beatae sint magnam molestias modi voluptates et."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
679
+  (0.0ms) RELEASE SAVEPOINT active_record_1
680
+  (0.0ms) SAVEPOINT active_record_1
681
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "merle.frami@example.com"], ["author_name", "Adrienne Collier"], ["body", "Aut quod sit. Molestiae quia doloribus. Et voluptatem dolore debitis."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
682
+  (0.0ms) RELEASE SAVEPOINT active_record_1
683
+  (0.0ms) SAVEPOINT active_record_1
684
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "savion@example.net"], ["author_name", "Heloise Larkin"], ["body", "Et vel repellendus maxime."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
685
+  (0.0ms) RELEASE SAVEPOINT active_record_1
686
+  (0.0ms) SAVEPOINT active_record_1
687
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "addison.hoppe@example.org"], ["author_name", "Ms. Minerva Quigley"], ["body", "Nobis optio id voluptates et mollitia."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
688
+  (0.0ms) RELEASE SAVEPOINT active_record_1
689
+  (0.0ms) SAVEPOINT active_record_1
690
+ 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
691
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "alek.cremin@example.com"], ["author_name", "Napoleon MacGyver PhD"], ["body", "Quidem maxime inventore quibusdam magnam dignissimos cupiditate est. Iste pariatur enim temporibus accusamus minima."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
693
+  (0.0ms) SAVEPOINT active_record_1
694
+ 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
695
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "etha.roob@example.net"], ["author_name", "Marcelino Christiansen"], ["body", "Ut id ut consequuntur. Saepe laborum omnis suscipit voluptatem aut maxime sed. Voluptatem qui rerum harum et."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
696
+  (0.0ms) RELEASE SAVEPOINT active_record_1
697
+  (0.0ms) SAVEPOINT active_record_1
698
+ 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
699
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "brenden.cummerata@example.com"], ["author_name", "Ms. Shaina Ernser"], ["body", "Laudantium vero neque ut nostrum ipsa aut."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
700
+  (0.0ms) RELEASE SAVEPOINT active_record_1
701
+  (0.0ms) SAVEPOINT active_record_1
702
+ 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
703
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "angela_cummings@example.com"], ["author_name", "Dane Lind"], ["body", "Quia sed laboriosam molestias illum."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
704
+  (0.0ms) RELEASE SAVEPOINT active_record_1
705
+  (0.0ms) SAVEPOINT active_record_1
706
+ 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
707
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "dorcas@example.com"], ["author_name", "Kathlyn Kuhn"], ["body", "Aperiam vero veritatis."], ["created_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
708
+  (0.0ms) RELEASE SAVEPOINT active_record_1
709
+ Processing by Almanac::BlogsController#spam as HTML
710
+ Parameters: {"id"=>"1"}
711
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
712
+ Completed 200 OK in 5ms (Views: 1.4ms | ActiveRecord: 0.1ms)
713
+ Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."spam" = 't' ORDER BY id ASC
714
+  (10.2ms) rollback transaction
715
+  (0.1ms) begin transaction
716
+  (0.0ms) SAVEPOINT active_record_1
717
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'flavio@example.com' LIMIT 1
718
+ Binary data inserted for `string` type on column `encrypted_password`
719
+ 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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "flavio@example.com"], ["encrypted_password", "$2a$04$8zxeGNMSKJ5b954/krlk7.ErVx6XgIeuwYak10Dt6Lk.9n7mXjUE6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
720
+  (0.0ms) RELEASE SAVEPOINT active_record_1
721
+ Processing by Almanac::BlogsController#create as HTML
722
+ Parameters: {"blog"=>{"title"=>nil, "description"=>"Modi voluptatum iure molestiae doloremque eos molestiae et. Dolores nam iusto nulla itaque perferendis nobis consequatur. Eum laudantium harum vero. Magnam beatae architecto. Est vel velit.", "author_id"=>nil}}
723
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
724
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
725
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
726
+  (0.0ms) SAVEPOINT active_record_1
727
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
728
+ Completed 200 OK in 27ms (Views: 21.8ms | ActiveRecord: 0.3ms)
729
+  (60.3ms) rollback transaction
730
+  (0.1ms) begin transaction
731
+  (0.0ms) SAVEPOINT active_record_1
732
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'beverly@example.net' LIMIT 1
733
+ Binary data inserted for `string` type on column `encrypted_password`
734
+ 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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "beverly@example.net"], ["encrypted_password", "$2a$04$9M4WOwfUNqF4OXvZM3N4zu6EX77exu7sYi0hT9Z9HaGpT6wGa6GfO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
735
+  (0.0ms) RELEASE SAVEPOINT active_record_1
736
+  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs" 
737
+ Processing by Almanac::BlogsController#create as HTML
738
+ Parameters: {"blog"=>{"title"=>nil, "description"=>"Dolor veniam debitis maxime modi nisi doloribus sed. Asperiores expedita voluptatum eos doloremque. Est dolore et sed ratione corrupti. Amet corrupti quae id unde quos iure et. Sed corrupti sunt ratione explicabo.", "author_id"=>nil}}
739
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
740
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
741
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
742
+  (0.0ms) SAVEPOINT active_record_1
743
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
744
+ Completed 200 OK in 6ms (Views: 1.3ms | ActiveRecord: 0.3ms)
745
+  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs" 
746
+  (57.9ms) rollback transaction
747
+  (0.1ms) begin transaction
748
+  (0.0ms) SAVEPOINT active_record_1
749
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'flavio@example.com' LIMIT 1
750
+ Binary data inserted for `string` type on column `encrypted_password`
751
+ 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", Wed, 14 Nov 2012 18:53:43 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "flavio@example.com"], ["encrypted_password", "$2a$04$YsUebaNmR0niTVCUgaKzAOuo3iOuckYuzEOTeTYdScZICe57tSBLi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:43 UTC +00:00]]
752
+  (0.0ms) RELEASE SAVEPOINT active_record_1
753
+ Processing by Almanac::BlogsController#create as HTML
754
+ Parameters: {"blog"=>{"title"=>"Velit sit recusandae temporibus.", "description"=>"Dolores nam iusto nulla itaque perferendis nobis consequatur. Eum laudantium harum vero. Magnam beatae architecto. Est vel velit.", "author_id"=>nil}}
755
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
756
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
757
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
758
+  (0.0ms) SAVEPOINT active_record_1
759
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
760
+ 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", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["description", "Dolores nam iusto nulla itaque perferendis nobis consequatur. Eum laudantium harum vero. Magnam beatae architecto. Est vel velit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Velit sit recusandae temporibus."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00]]
761
+  (0.0ms) RELEASE SAVEPOINT active_record_1
762
+ Redirected to http://test.host/almanac/
763
+ Completed 302 Found in 7ms (ActiveRecord: 0.9ms)
764
+  (6.7ms) rollback transaction
765
+  (0.1ms) begin transaction
766
+  (0.1ms) SAVEPOINT active_record_1
767
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'beverly@example.net' LIMIT 1
768
+ Binary data inserted for `string` type on column `encrypted_password`
769
+ 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", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "beverly@example.net"], ["encrypted_password", "$2a$04$NYi2TM5QnWhseHR8YueA5uxYtnGhKF09ycOjL7gkbeTwq6RRKgGoW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00]]
770
+  (0.0ms) RELEASE SAVEPOINT active_record_1
771
+  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs" 
772
+ Processing by Almanac::BlogsController#create as HTML
773
+ Parameters: {"blog"=>{"title"=>"Dolor veniam debitis maxime modi nisi doloribus.", "description"=>"Non voluptate dolores nam nulla. Et nesciunt qui. Nihil dolor dolores sapiente vel quos reprehenderit suscipit. Fuga omnis facilis. Quisquam incidunt nihil tempora eius eos consequatur consequuntur.", "author_id"=>nil}}
774
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
775
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
776
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
777
+  (0.0ms) SAVEPOINT active_record_1
778
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
779
+ 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", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["description", "Non voluptate dolores nam nulla. Et nesciunt qui. Nihil dolor dolores sapiente vel quos reprehenderit suscipit. Fuga omnis facilis. Quisquam incidunt nihil tempora eius eos consequatur consequuntur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor veniam debitis maxime modi nisi doloribus."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00]]
780
+  (0.1ms) RELEASE SAVEPOINT active_record_1
781
+ Redirected to http://test.host/almanac/
782
+ Completed 302 Found in 8ms (ActiveRecord: 1.2ms)
783
+  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs" 
784
+  (2.7ms) rollback transaction
785
+  (0.1ms) begin transaction
786
+ 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)
787
+  (0.1ms) rollback transaction
788
+  (0.0ms) begin transaction
789
+ 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)
790
+  (0.0ms) SAVEPOINT active_record_1
791
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
792
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["description", "Ex recusandae a in nulla officiis vero. Consequatur vel explicabo rerum qui quis. Pariatur distinctio est cum qui enim odit. Eum pariatur aut autem ducimus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ullam atque."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00]]
793
+  (0.0ms) RELEASE SAVEPOINT active_record_1
794
+  (2.5ms) rollback transaction
795
+  (0.1ms) begin transaction
796
+ 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)
797
+  (0.0ms) SAVEPOINT active_record_1
798
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
799
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["description", "Qui quo dolorum vel quidem animi vel nisi. Nostrum officia officiis numquam consequatur hic expedita. Velit autem laboriosam velit fugit enim aut. Sit et aut voluptates."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ut nam dolor magni."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00]]
800
+  (0.0ms) RELEASE SAVEPOINT active_record_1
801
+  (7.1ms) rollback transaction
802
+  (0.1ms) begin transaction
803
+ 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)
804
+  (0.0ms) SAVEPOINT active_record_1
805
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
806
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["description", "Sed autem rem in dolores corporis. Quo fugit maxime omnis. Sit saepe sed unde harum. Sit et rem voluptas ipsa quisquam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Amet eveniet et cumque reiciendis sint."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00]]
807
+  (0.0ms) RELEASE SAVEPOINT active_record_1
808
+  (5.6ms) rollback transaction
809
+  (0.1ms) begin transaction
810
+ 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)
811
+  (0.0ms) SAVEPOINT active_record_1
812
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
813
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["description", "Laudantium deleniti sint animi similique odio. Unde ducimus ea est velit aut dolorum. Nulla aspernatur voluptas amet nisi sapiente."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Rerum quia mollitia vel earum atque sint."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00]]
814
+  (0.0ms) RELEASE SAVEPOINT active_record_1
815
+  (6.3ms) rollback transaction
816
+  (0.1ms) begin transaction
817
+  (0.0ms) SAVEPOINT active_record_1
818
+ Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
819
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["description", "Cumque facilis perferendis ipsa sit. Rerum voluptas alias consequatur fugiat. Corrupti voluptatem blanditiis fuga quidem et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sequi minus aliquam omnis minima sapiente nihil."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00]]
820
+  (0.0ms) RELEASE SAVEPOINT active_record_1
821
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
822
+  (0.0ms) SAVEPOINT active_record_1
823
+ SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 35], ["blog_id", 1], ["body", "Fugit qui non sed aut. Libero laborum et. Excepturi fugit in nesciunt tenetur. Ad quam aut asperiores. Odit est libero exercitationem recusandae saepe. Dolorum cum voluptas et eos."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Sint."], ["published", true], ["title", "Adipisci asperiores ullam et."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
824
+ 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')
825
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
826
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
827
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test14' LIMIT 1
828
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test14"]]
829
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec14' LIMIT 1
830
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec14"]]
831
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby14' LIMIT 1
832
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby14"]]
833
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails14' LIMIT 1
834
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails14"]]
835
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
836
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
837
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
838
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
839
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
840
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
841
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
842
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
843
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
844
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
845
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
846
+  (0.0ms) RELEASE SAVEPOINT active_record_1
847
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
848
+  (0.0ms) SAVEPOINT active_record_1
849
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 36], ["blog_id", 1], ["body", "Vel voluptas impedit perspiciatis et fugiat neque tenetur. Eos impedit nihil neque fugit. Aut ipsa voluptatibus rerum quae ut molestiae. Corporis praesentium maiores quasi qui aperiam. Dolorum voluptas molestiae dolores eveniet officiis autem exercitationem. Possimus consequatur iure dicta ullam saepe. Aut quis inventore."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Non consectetur quisquam."], ["published", true], ["title", "Consectetur tempora eius non et iusto nemo."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
850
+ 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')
851
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test15' LIMIT 1
852
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test15"]]
853
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec15' LIMIT 1
854
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec15"]]
855
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby15' LIMIT 1
856
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby15"]]
857
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails15' LIMIT 1
858
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails15"]]
859
+ 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)
860
+ ActsAsTaggableOn::Tagging 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
861
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
862
+ 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
863
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
864
+ 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
865
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
866
+ 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
867
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
868
+ 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
869
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
870
+  (0.0ms) RELEASE SAVEPOINT active_record_1
871
+ Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC
872
+  (4.5ms) rollback transaction
873
+  (0.1ms) begin transaction
874
+ 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)
875
+  (0.0ms) SAVEPOINT active_record_1
876
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
877
+ 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", 38], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["description", "Modi et consequatur itaque. Non tenetur expedita. Aliquam error nisi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Possimus corporis vel."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00]]
878
+  (0.0ms) RELEASE SAVEPOINT active_record_1
879
+  (0.7ms) rollback transaction
880
+  (0.0ms) begin transaction
881
+ 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)
882
+  (0.0ms) SAVEPOINT active_record_1
883
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
884
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 40], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["description", "Architecto est quidem nisi voluptas delectus. Dicta labore et. Sapiente et et sed. Et tempore mollitia veritatis id eveniet."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quasi saepe laborum eum et rem magni."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00]]
885
+  (0.0ms) RELEASE SAVEPOINT active_record_1
886
+  (0.0ms) SAVEPOINT active_record_1
887
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 39], ["blog_id", 1], ["body", "Minus dolores nam sit error. Reprehenderit tenetur animi perferendis. Odio aut porro vero voluptatum. Itaque blanditiis rerum ullam doloribus asperiores tempora. Ut unde porro ratione incidunt aut facilis. Sint maxime eaque."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Eius nihil omnis dolores."], ["published", true], ["title", "Possimus aliquam quo."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
888
+ 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')
889
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
890
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
891
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test17' LIMIT 1
892
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test17"]]
893
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec17' LIMIT 1
894
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec17"]]
895
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby17' LIMIT 1
896
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby17"]]
897
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails17' LIMIT 1
898
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails17"]]
899
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
900
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
901
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
902
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
903
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
904
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
905
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
906
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
907
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
908
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
909
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
910
+  (0.0ms) RELEASE SAVEPOINT active_record_1
911
+ Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC
912
+  (11.3ms) rollback transaction
913
+  (0.1ms) begin transaction
914
+ 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)
915
+  (0.0ms) SAVEPOINT active_record_1
916
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
917
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["description", "Est omnis modi. Officiis vel saepe aperiam atque assumenda. Et sunt quo cupiditate quis optio. Soluta laboriosam iure quam. Facere beatae dolor vitae."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Enim ipsa ut dolorem cupiditate voluptas accusantium."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00]]
918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
919
+  (20.4ms) rollback transaction
920
+  (0.1ms) begin transaction
921
+ 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)
922
+  (0.1ms) rollback transaction
923
+  (0.0ms) begin transaction
924
+  (0.0ms) SAVEPOINT active_record_1
925
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
926
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["description", "Doloribus consequatur tenetur aperiam possimus omnis totam. Praesentium et blanditiis et. Facere modi laboriosam unde sunt quaerat. Asperiores dignissimos quos dolor et et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Omnis rerum quo esse ullam."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00]]
927
+  (0.0ms) RELEASE SAVEPOINT active_record_1
928
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
929
+  (0.0ms) SAVEPOINT active_record_1
930
+ SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 45], ["blog_id", 1], ["body", "Possimus ipsa magni. Voluptas eos maiores esse dolor odio temporibus. Praesentium sapiente adipisci rerum quo. Voluptas est dolores aut voluptatibus et suscipit nostrum. Qui omnis occaecati minima sint aut. Suscipit quae modi temporibus odit perspiciatis."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Placeat dolorem est accusantium harum dolorem."], ["published", true], ["title", "Possimus voluptas aut eum enim consequuntur voluptatum vero."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
931
+ 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')
932
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
933
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
934
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test20' LIMIT 1
935
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test20"]]
936
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec20' LIMIT 1
937
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec20"]]
938
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby20' LIMIT 1
939
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby20"]]
940
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails20' LIMIT 1
941
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails20"]]
942
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
943
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
944
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
945
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
946
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
947
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
948
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
949
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
950
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
951
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
952
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
953
+  (0.0ms) RELEASE SAVEPOINT active_record_1
954
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
955
+  (0.0ms) SAVEPOINT active_record_1
956
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 46], ["blog_id", 1], ["body", "Aliquid dicta itaque. Ut sunt quibusdam est consequatur tempora molestias ullam. Corporis qui et nulla voluptas non consequatur culpa. Est in qui molestias qui mollitia inventore. Eligendi vel nesciunt. Corporis tempore autem dolorem."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Facilis dolores nulla odio dolore autem."], ["published", true], ["title", "Explicabo accusantium hic."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
957
+ 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')
958
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test21' LIMIT 1
959
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test21"]]
960
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec21' LIMIT 1
961
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec21"]]
962
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby21' LIMIT 1
963
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby21"]]
964
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails21' LIMIT 1
965
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails21"]]
966
+ 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)
967
+ ActsAsTaggableOn::Tagging 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
968
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
969
+ 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
970
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
971
+ 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
972
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
973
+ 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
974
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
975
+ 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
976
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
977
+  (0.0ms) RELEASE SAVEPOINT active_record_1
978
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
979
+  (0.0ms) SAVEPOINT active_record_1
980
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 47], ["blog_id", 1], ["body", "Cum quo ducimus ea nesciunt officia quo. Ut nihil reprehenderit dolorem delectus. Praesentium amet tempore. Qui voluptas ducimus culpa numquam. Cum incidunt nostrum est. Consequatur dolorem ipsum sunt. Consequatur eos est adipisci laboriosam ea facilis dignissimos."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Sint ut quis sed."], ["published", true], ["title", "Non eius quia voluptatem qui."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
981
+ 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')
982
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test22' LIMIT 1
983
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test22"]]
984
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec22' LIMIT 1
985
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec22"]]
986
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby22' LIMIT 1
987
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby22"]]
988
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails22' LIMIT 1
989
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails22"]]
990
+ 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)
991
+ ActsAsTaggableOn::Tagging 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
992
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
993
+ 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
994
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
995
+ 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
996
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
997
+ 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
998
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
999
+ 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
1000
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1001
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1002
+ Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1
1003
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1004
+  (0.0ms) SAVEPOINT active_record_1
1005
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 48], ["blog_id", 1], ["body", "Nobis dolores eum velit. Eos voluptatem maxime ipsum quis illum itaque id. Esse corrupti et quo nobis ut sed voluptatem. Molestiae iusto quos repellendus aspernatur assumenda rerum. Ut pariatur quam possimus repellat perspiciatis sint et. Incidunt est laudantium dolorem est."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Impedit."], ["published", false], ["title", "Cupiditate aliquam voluptatem."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1006
+ 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')
1007
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test23' LIMIT 1
1008
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test23"]]
1009
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec23' LIMIT 1
1010
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec23"]]
1011
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby23' LIMIT 1
1012
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby23"]]
1013
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails23' LIMIT 1
1014
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails23"]]
1015
+ 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)
1016
+ ActsAsTaggableOn::Tagging 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
1017
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1018
+ 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
1019
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1020
+ 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
1021
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1022
+ 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
1023
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1024
+ 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
1025
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1027
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1028
+  (0.0ms) SAVEPOINT active_record_1
1029
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 49], ["blog_id", 1], ["body", "Qui voluptas nam id soluta. Debitis porro praesentium fugiat qui. Quia voluptas molestias id. Aut qui molestiae et in. Sapiente qui vel. Odit voluptatem quis accusamus architecto."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Harum excepturi aut quidem."], ["published", false], ["title", "Nostrum rerum ut."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1030
+ 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')
1031
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test24' LIMIT 1
1032
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test24"]]
1033
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec24' LIMIT 1
1034
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec24"]]
1035
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby24' LIMIT 1
1036
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby24"]]
1037
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails24' LIMIT 1
1038
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails24"]]
1039
+ 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)
1040
+ ActsAsTaggableOn::Tagging 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
1041
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1042
+ 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
1043
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1044
+ 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
1045
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1046
+ 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
1047
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1048
+ 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
1049
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1050
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1051
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1052
+  (0.0ms) SAVEPOINT active_record_1
1053
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 50], ["blog_id", 1], ["body", "Id ut consequatur commodi sunt. Suscipit maiores et. Non enim et aperiam nihil voluptas explicabo ratione. Placeat autem atque animi exercitationem. Qui porro ea fuga itaque veniam alias excepturi."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Quaerat eligendi nihil eos."], ["published", false], ["title", "Ab sunt iste laborum odio deserunt sed."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1054
+ 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')
1055
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test25' LIMIT 1
1056
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test25"]]
1057
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec25' LIMIT 1
1058
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec25"]]
1059
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby25' LIMIT 1
1060
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby25"]]
1061
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails25' LIMIT 1
1062
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails25"]]
1063
+ 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)
1064
+ ActsAsTaggableOn::Tagging 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
1065
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1066
+ 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
1067
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1068
+ 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
1069
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1070
+ 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
1071
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1072
+ 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
1073
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1075
+  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f'
1076
+  (4.5ms) rollback transaction
1077
+  (0.1ms) begin transaction
1078
+  (0.0ms) SAVEPOINT active_record_1
1079
+ Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
1080
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["description", "Vitae odio autem et consequatur. Perspiciatis natus asperiores. Nisi sint aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Fugit corporis aut maiores neque pariatur."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00]]
1081
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1082
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1083
+  (0.0ms) SAVEPOINT active_record_1
1084
+ SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 52], ["blog_id", 1], ["body", "Ratione dolores consequuntur eos nemo porro. Possimus ipsa magni. Voluptas eos maiores esse dolor odio temporibus. Praesentium sapiente adipisci rerum quo. Voluptas est dolores aut voluptatibus et suscipit nostrum. Qui omnis occaecati minima sint aut."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Eos ut rerum ut dolor."], ["published", true], ["title", "Qui est blanditiis sit molestias."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1085
+ 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')
1086
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
1087
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
1088
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test26' LIMIT 1
1089
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test26"]]
1090
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec26' LIMIT 1
1091
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec26"]]
1092
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby26' LIMIT 1
1093
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby26"]]
1094
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails26' LIMIT 1
1095
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails26"]]
1096
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1097
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1098
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1099
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1100
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1101
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1102
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1103
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1104
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1105
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1106
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1107
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1108
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1109
+  (0.0ms) SAVEPOINT active_record_1
1110
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 53], ["blog_id", 1], ["body", "Laborum qui quia modi possimus. Veniam reprehenderit laudantium. Rerum porro facere rerum ea dicta odit. Corporis qui et nulla voluptas non consequatur culpa. Est in qui molestias qui mollitia inventore. Eligendi vel nesciunt."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Explicabo."], ["published", true], ["title", "Suscipit quae modi temporibus odit perspiciatis."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1111
+ 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')
1112
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test27' LIMIT 1
1113
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test27"]]
1114
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec27' LIMIT 1
1115
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec27"]]
1116
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby27' LIMIT 1
1117
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby27"]]
1118
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails27' LIMIT 1
1119
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails27"]]
1120
+ 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)
1121
+ ActsAsTaggableOn::Tagging 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
1122
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1123
+ 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
1124
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1125
+ 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
1126
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1127
+ 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
1128
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1129
+ 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
1130
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1131
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1132
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1133
+  (0.0ms) SAVEPOINT active_record_1
1134
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 54], ["blog_id", 1], ["body", "Amet minima minus beatae nostrum et commodi. Dolores nobis molestias dolore dolor. Quibusdam et itaque ea qui est assumenda ea. Quis accusantium tenetur esse enim voluptatem. Sit fugiat reprehenderit quas."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Non eius quia."], ["published", true], ["title", "Corporis tempore autem dolorem."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1135
+ 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')
1136
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test28' LIMIT 1
1137
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test28"]]
1138
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec28' LIMIT 1
1139
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec28"]]
1140
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby28' LIMIT 1
1141
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby28"]]
1142
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails28' LIMIT 1
1143
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails28"]]
1144
+ 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)
1145
+ ActsAsTaggableOn::Tagging 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
1146
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1147
+ 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
1148
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1149
+ 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
1150
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1151
+ 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
1152
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1153
+ 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
1154
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1155
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1156
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1157
+  (0.0ms) SAVEPOINT active_record_1
1158
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 55], ["blog_id", 1], ["body", "Consequatur quae fugit itaque mollitia et maiores. Dicta odit aut et velit ipsam mollitia ipsum. Doloremque sint soluta animi. Nobis dolores eum velit. Eos voluptatem maxime ipsum quis illum itaque id. Esse corrupti et quo nobis ut sed voluptatem. Molestiae iusto quos repellendus aspernatur assumenda rerum."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Quia dolor."], ["published", true], ["title", "Et dolorum et quos nostrum sapiente."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1159
+ 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')
1160
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test29' LIMIT 1
1161
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test29"]]
1162
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec29' LIMIT 1
1163
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec29"]]
1164
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby29' LIMIT 1
1165
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby29"]]
1166
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails29' LIMIT 1
1167
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails29"]]
1168
+ 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)
1169
+ ActsAsTaggableOn::Tagging 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
1170
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1171
+ 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
1172
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1173
+ 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
1174
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1175
+ 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
1176
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1177
+ 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
1178
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1179
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1180
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1181
+  (0.0ms) SAVEPOINT active_record_1
1182
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 56], ["blog_id", 1], ["body", "Nostrum rerum ut. Harum excepturi aut quidem dolor qui. Cupiditate odit ut eaque. Unde nihil ut aspernatur. Sit ratione tempora. Sunt repellendus porro omnis vel qui. Odio officiis provident molestiae."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Incidunt est laudantium."], ["published", true], ["title", "Ut pariatur quam possimus repellat perspiciatis sint et."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1183
+ 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')
1184
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test30' LIMIT 1
1185
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test30"]]
1186
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec30' LIMIT 1
1187
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec30"]]
1188
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby30' LIMIT 1
1189
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby30"]]
1190
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails30' LIMIT 1
1191
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails30"]]
1192
+ 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)
1193
+ ActsAsTaggableOn::Tagging 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
1194
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1195
+ 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
1196
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1197
+ 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
1198
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1199
+ 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
1200
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1201
+ 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
1202
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1203
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1204
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1205
+  (0.0ms) SAVEPOINT active_record_1
1206
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 57], ["blog_id", 1], ["body", "Natus fugit itaque soluta assumenda. Est voluptatum numquam. Asperiores rem a reiciendis sed quam. Voluptas optio a temporibus voluptatem quia. In occaecati sunt voluptas. Magni consequatur nihil dolorem. Magni itaque vero qui amet ratione non."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Qui velit."], ["published", true], ["title", "Aut repellendus dolorum veritatis autem nemo deserunt."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1207
+ 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')
1208
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test31' LIMIT 1
1209
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test31"]]
1210
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec31' LIMIT 1
1211
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec31"]]
1212
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby31' LIMIT 1
1213
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby31"]]
1214
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails31' LIMIT 1
1215
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails31"]]
1216
+ 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)
1217
+ ActsAsTaggableOn::Tagging 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
1218
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1219
+ 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
1220
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1221
+ 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
1222
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1223
+ 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
1224
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1225
+ 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
1226
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1227
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1228
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1229
+  (0.0ms) SAVEPOINT active_record_1
1230
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 58], ["blog_id", 1], ["body", "Tempore temporibus recusandae quam eos. Architecto dolorum perspiciatis ducimus unde dolorem. Asperiores qui omnis incidunt quas. Corporis voluptas dolorem et voluptas sunt. Atque consequatur et laboriosam deserunt qui voluptatum vel. Suscipit magni dolor distinctio nesciunt exercitationem aut est. Asperiores eos eum."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Quo optio porro voluptate qui."], ["published", true], ["title", "Cum natus minima."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1231
+ 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')
1232
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test32' LIMIT 1
1233
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test32"]]
1234
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec32' LIMIT 1
1235
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec32"]]
1236
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby32' LIMIT 1
1237
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby32"]]
1238
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails32' LIMIT 1
1239
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails32"]]
1240
+ 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)
1241
+ ActsAsTaggableOn::Tagging 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
1242
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1243
+ 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
1244
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1245
+ 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
1246
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1247
+ 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
1248
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1249
+ 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
1250
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1251
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1252
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1253
+  (0.0ms) SAVEPOINT active_record_1
1254
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 59], ["blog_id", 1], ["body", "Natus facilis tenetur nostrum. Possimus doloremque ea praesentium molestiae. Sit recusandae modi. Consequatur rerum temporibus repellendus ipsam odio eveniet aspernatur. Beatae sint magnam molestias modi voluptates et."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Sit cum."], ["published", true], ["title", "Molestiae et ducimus maxime rem aut."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1255
+ 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')
1256
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test33' LIMIT 1
1257
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test33"]]
1258
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec33' LIMIT 1
1259
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec33"]]
1260
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby33' LIMIT 1
1261
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby33"]]
1262
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails33' LIMIT 1
1263
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails33"]]
1264
+ 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)
1265
+ ActsAsTaggableOn::Tagging 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
1266
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1267
+ 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
1268
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1269
+ 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
1270
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1271
+ 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
1272
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1273
+ 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
1274
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1275
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1276
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1277
+  (0.0ms) SAVEPOINT active_record_1
1278
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 60], ["blog_id", 1], ["body", "Rem qui quia ex deleniti. Rerum minus dolor porro praesentium. Et voluptatem dolores excepturi mollitia. Rerum omnis quis necessitatibus. Facere aperiam voluptates. At maiores est quia voluptatem eos exercitationem."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Eos ut dolorum aspernatur quia fugiat."], ["published", true], ["title", "Omnis ut ullam reiciendis facilis cupiditate quis."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1279
+ 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')
1280
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test34' LIMIT 1
1281
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test34"]]
1282
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec34' LIMIT 1
1283
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec34"]]
1284
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby34' LIMIT 1
1285
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby34"]]
1286
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails34' LIMIT 1
1287
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails34"]]
1288
+ 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)
1289
+ ActsAsTaggableOn::Tagging 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
1290
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1291
+ 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
1292
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1293
+ 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
1294
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1295
+ 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
1296
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1297
+ 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
1298
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1299
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1300
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1301
+  (0.0ms) SAVEPOINT active_record_1
1302
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 61], ["blog_id", 1], ["body", "Minima et voluptatibus id. Unde quia dolorem sunt dolor quos voluptate qui. Recusandae laudantium quis nobis vero consequatur sapiente. Inventore dolore atque facilis animi aut velit nostrum. Fuga consequatur repellendus aut ut sunt. Eius rem facere exercitationem mollitia error porro."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Sint et minus."], ["published", true], ["title", "Iure dolores quidem magni modi."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1303
+ 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')
1304
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test35' LIMIT 1
1305
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test35"]]
1306
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec35' LIMIT 1
1307
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec35"]]
1308
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby35' LIMIT 1
1309
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby35"]]
1310
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails35' LIMIT 1
1311
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails35"]]
1312
+ 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)
1313
+ ActsAsTaggableOn::Tagging 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
1314
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1315
+ 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
1316
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1317
+ 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
1318
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1319
+ 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
1320
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1321
+ 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
1322
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1323
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1324
+ Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1
1325
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1326
+  (0.0ms) SAVEPOINT active_record_1
1327
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 62], ["blog_id", 1], ["body", "Quia amet optio odit soluta. In quia dignissimos porro doloribus qui perspiciatis illum. Et voluptatem praesentium numquam et amet. Incidunt cumque ullam ut perferendis reiciendis. Corporis beatae ut voluptate enim natus. Doloremque aut quas explicabo aliquid. Totam eos nobis eaque non quia quidem quas."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Nemo."], ["published", false], ["title", "Iusto fuga doloribus odio praesentium assumenda et."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1328
+ 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')
1329
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test36' LIMIT 1
1330
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test36"]]
1331
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec36' LIMIT 1
1332
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec36"]]
1333
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby36' LIMIT 1
1334
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby36"]]
1335
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails36' LIMIT 1
1336
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails36"]]
1337
+ 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)
1338
+ ActsAsTaggableOn::Tagging 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
1339
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1340
+ 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
1341
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 42], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1342
+ 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
1343
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 43], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1344
+ 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
1345
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 44], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1346
+ 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
1347
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 45], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1348
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1349
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1350
+  (0.0ms) SAVEPOINT active_record_1
1351
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 63], ["blog_id", 1], ["body", "Est optio quis eaque possimus corporis numquam vel. Quasi consequatur repudiandae qui autem. Explicabo laboriosam odio minus praesentium molestiae. Debitis accusantium sit mollitia nulla. Quo fugit sit. Minus a itaque libero eum non. Omnis fuga ad expedita."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Fugit et minus."], ["published", false], ["title", "Odit quis sed sint ipsam."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1352
+ 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')
1353
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test37' LIMIT 1
1354
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test37"]]
1355
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec37' LIMIT 1
1356
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec37"]]
1357
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby37' LIMIT 1
1358
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby37"]]
1359
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails37' LIMIT 1
1360
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails37"]]
1361
+ 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)
1362
+ ActsAsTaggableOn::Tagging 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
1363
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1364
+ 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
1365
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 46], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1366
+ 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
1367
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 47], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1368
+ 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
1369
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 48], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1370
+ 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
1371
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 49], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1372
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1373
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')
1374
+  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_75635e7 ON posts_taggings_75635e7.taggable_id = almanac_posts.id AND posts_taggings_75635e7.taggable_type = 'Almanac::Post' AND posts_taggings_75635e7.tag_id = 1 WHERE "almanac_posts"."published" = 't'
1375
+  (6.9ms) rollback transaction
1376
+  (0.1ms) begin transaction
1377
+  (0.0ms) SAVEPOINT active_record_1
1378
+ Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
1379
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["description", "Omnis sed illum reiciendis enim omnis dolore. Asperiores et natus eaque id quia eveniet. Labore dicta a voluptatem quibusdam dolore."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Doloribus eveniet autem assumenda unde ut ullam."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00]]
1380
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1381
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1382
+  (0.0ms) SAVEPOINT active_record_1
1383
+ SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 65], ["blog_id", 1], ["body", "Veniam sapiente autem error incidunt. Ratione animi dignissimos ad odio accusantium nobis. Similique neque quia incidunt. Placeat aut cum reiciendis aperiam inventore totam exercitationem. Dicta aut consequatur sunt nobis quasi."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Unde molestias aperiam voluptas."], ["published", true], ["title", "Dolor id alias maxime."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1384
+ 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')
1385
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
1386
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
1387
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test38' LIMIT 1
1388
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test38"]]
1389
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec38' LIMIT 1
1390
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec38"]]
1391
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby38' LIMIT 1
1392
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby38"]]
1393
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails38' LIMIT 1
1394
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails38"]]
1395
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1396
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1397
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1398
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1399
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1400
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1401
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1402
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1403
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1404
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1405
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1407
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1408
+  (0.0ms) SAVEPOINT active_record_1
1409
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 66], ["blog_id", 1], ["body", "Sunt maiores quo quasi quam ex magni. Rerum distinctio aspernatur voluptas. Nostrum sequi minus fugit qui sed laboriosam occaecati. Voluptas magnam enim qui quia cumque non. Ullam officia tenetur exercitationem. Veniam id quam autem."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "In ullam facilis praesentium placeat."], ["published", true], ["title", "Mollitia numquam eos harum rerum sequi consectetur quasi."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1410
+ 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')
1411
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test39' LIMIT 1
1412
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test39"]]
1413
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec39' LIMIT 1
1414
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec39"]]
1415
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby39' LIMIT 1
1416
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby39"]]
1417
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails39' LIMIT 1
1418
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails39"]]
1419
+ 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)
1420
+ ActsAsTaggableOn::Tagging 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
1421
+ SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1422
+ 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
1423
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1424
+ 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
1425
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1426
+ 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
1427
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1428
+ 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
1429
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1430
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1431
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1432
+  (0.0ms) SAVEPOINT active_record_1
1433
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 67], ["blog_id", 1], ["body", "Suscipit commodi omnis laudantium quia dolorem aliquid. Dolor eos explicabo vitae eligendi ut esse. Et consequatur assumenda quibusdam veritatis ex. Laudantium quos deserunt. Voluptatibus voluptatem dolor nisi error voluptatum ea. Accusamus cumque sapiente odio."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Fugit."], ["published", true], ["title", "Qui necessitatibus ea sed."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1434
+ 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')
1435
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test40' LIMIT 1
1436
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test40"]]
1437
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec40' LIMIT 1
1438
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec40"]]
1439
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby40' LIMIT 1
1440
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby40"]]
1441
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails40' LIMIT 1
1442
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails40"]]
1443
+ 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)
1444
+ ActsAsTaggableOn::Tagging 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
1445
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1446
+ 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
1447
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1448
+ 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
1449
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1450
+ 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
1451
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1452
+ 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
1453
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1454
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1455
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1456
+  (0.0ms) SAVEPOINT active_record_1
1457
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 68], ["blog_id", 1], ["body", "Totam est voluptatem assumenda. Ratione quo ut. Minus praesentium ea facere voluptatem. Aut ut nostrum qui quas voluptatem possimus. Eaque tenetur facilis itaque consequatur ut quis cum."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Perferendis ullam corporis pariatur."], ["published", true], ["title", "Aut autem quo sed animi non repellat aliquid."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1458
+ 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')
1459
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test41' LIMIT 1
1460
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test41"]]
1461
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec41' LIMIT 1
1462
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec41"]]
1463
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby41' LIMIT 1
1464
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby41"]]
1465
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails41' LIMIT 1
1466
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails41"]]
1467
+ 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)
1468
+ ActsAsTaggableOn::Tagging 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
1469
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1470
+ 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
1471
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1472
+ 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
1473
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1474
+ 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
1475
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1476
+ 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
1477
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1478
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1479
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1480
+  (0.0ms) SAVEPOINT active_record_1
1481
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 69], ["blog_id", 1], ["body", "Architecto dolores perspiciatis ut voluptatem id et laborum. Tempore totam architecto. Autem nemo vitae fugit suscipit nihil dignissimos odio. Officiis necessitatibus vel. Id aspernatur omnis dignissimos quod labore rerum."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Nemo sit dolores."], ["published", true], ["title", "Alias autem sint."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1482
+ 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')
1483
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test42' LIMIT 1
1484
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test42"]]
1485
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec42' LIMIT 1
1486
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec42"]]
1487
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby42' LIMIT 1
1488
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby42"]]
1489
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails42' LIMIT 1
1490
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails42"]]
1491
+ 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)
1492
+ ActsAsTaggableOn::Tagging 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
1493
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1494
+ 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
1495
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1496
+ 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
1497
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1498
+ 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
1499
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1500
+ 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
1501
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1502
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1503
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1504
+  (0.0ms) SAVEPOINT active_record_1
1505
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 70], ["blog_id", 1], ["body", "Animi tempore quia porro debitis. Porro aspernatur consectetur qui doloribus. Eaque dolor et quidem saepe cumque distinctio dolor. Fugiat corrupti recusandae ut quia et. Ut iure nihil praesentium tenetur deleniti rerum est. Eaque beatae autem voluptas qui iusto voluptatem omnis."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Dolorum est corporis ratione dolores."], ["published", true], ["title", "In quos modi molestiae quae omnis."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1506
+ ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test43' OR lower(name) = 'rspec43' OR lower(name) = 'ruby43' OR lower(name) = '#rails43')
1507
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test43' LIMIT 1
1508
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test43"]]
1509
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec43' LIMIT 1
1510
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec43"]]
1511
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby43' LIMIT 1
1512
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby43"]]
1513
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails43' LIMIT 1
1514
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails43"]]
1515
+ 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)
1516
+ ActsAsTaggableOn::Tagging 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
1517
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1518
+ 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
1519
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1520
+ 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
1521
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1522
+ 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
1523
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1524
+ 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
1525
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1526
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1527
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1528
+  (0.1ms) SAVEPOINT active_record_1
1529
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 71], ["blog_id", 1], ["body", "Sequi ducimus aut. Ex necessitatibus totam molestiae cum sit odio est. Reprehenderit quos nostrum sit. Eos recusandae ut. Est quia consequatur distinctio. Ut earum dolores sint asperiores. Et et mollitia aspernatur adipisci ex quia."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Repellat accusamus sed voluptate ut."], ["published", true], ["title", "Est earum qui qui nesciunt sapiente eaque."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1530
+ 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')
1531
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test44' LIMIT 1
1532
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test44"]]
1533
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec44' LIMIT 1
1534
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec44"]]
1535
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby44' LIMIT 1
1536
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby44"]]
1537
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails44' LIMIT 1
1538
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails44"]]
1539
+ 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)
1540
+ ActsAsTaggableOn::Tagging 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
1541
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1542
+ 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
1543
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1544
+ 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
1545
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1546
+ 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
1547
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1548
+ 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
1549
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1550
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1551
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1552
+  (0.0ms) SAVEPOINT active_record_1
1553
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 72], ["blog_id", 1], ["body", "Ut nostrum enim corrupti et reprehenderit. Voluptas porro dolores sint quis quia et quis. Enim rem et sequi fugit incidunt vitae iure. Aperiam recusandae neque. Fugit eos odio suscipit facere est."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Facilis sapiente animi."], ["published", true], ["title", "Quia beatae dolor et."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1554
+ 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')
1555
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test45' LIMIT 1
1556
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test45"]]
1557
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec45' LIMIT 1
1558
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec45"]]
1559
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby45' LIMIT 1
1560
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby45"]]
1561
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails45' LIMIT 1
1562
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails45"]]
1563
+ 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)
1564
+ ActsAsTaggableOn::Tagging 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
1565
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1566
+ 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
1567
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1568
+ 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
1569
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1570
+ 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
1571
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1572
+ 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
1573
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1574
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1575
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1576
+  (0.0ms) SAVEPOINT active_record_1
1577
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 73], ["blog_id", 1], ["body", "Quos aut sed rem magni recusandae et. Tempore vero et. Velit qui et perferendis magni placeat. Voluptas tempore dignissimos quo quaerat corrupti ut pariatur. Nesciunt dolor eos sed sit natus omnis voluptatem."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Sunt corporis enim dignissimos."], ["published", true], ["title", "Sit ut quam laborum."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1578
+ 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')
1579
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test46' LIMIT 1
1580
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test46"]]
1581
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec46' LIMIT 1
1582
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec46"]]
1583
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby46' LIMIT 1
1584
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby46"]]
1585
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails46' LIMIT 1
1586
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails46"]]
1587
+ 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)
1588
+ ActsAsTaggableOn::Tagging 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
1589
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1590
+ 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
1591
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1592
+ 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
1593
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1594
+ 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
1595
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1596
+ 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
1597
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1598
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1599
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1600
+  (0.0ms) SAVEPOINT active_record_1
1601
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 74], ["blog_id", 1], ["body", "A optio eum. Eligendi temporibus esse nam vitae a reprehenderit minus. Quam exercitationem qui nulla voluptas quisquam. Nemo consectetur ut sint autem omnis. Consequatur et officia nostrum quibusdam ea qui. Culpa velit quos ipsa totam repudiandae molestiae vel. Aspernatur optio omnis vero."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Dolore porro repudiandae enim."], ["published", true], ["title", "Ullam mollitia dignissimos."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1602
+ 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')
1603
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test47' LIMIT 1
1604
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test47"]]
1605
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec47' LIMIT 1
1606
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec47"]]
1607
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby47' LIMIT 1
1608
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby47"]]
1609
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails47' LIMIT 1
1610
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails47"]]
1611
+ 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)
1612
+ ActsAsTaggableOn::Tagging 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
1613
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1614
+ 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
1615
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1616
+ 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
1617
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1618
+ 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
1619
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1620
+ 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
1621
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1622
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1623
+ Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1
1624
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1625
+  (0.0ms) SAVEPOINT active_record_1
1626
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 75], ["blog_id", 1], ["body", "Quia hic facilis ut nam. Impedit cum ab voluptas. Non nihil illum qui. A molestias id esse. Dolorem quas officiis tenetur aperiam aut. Ipsam praesentium sint inventore et et."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Qui."], ["published", true], ["title", "Suscipit architecto consequatur fugit neque."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1627
+ 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)
1628
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1629
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1630
+  (0.0ms) SAVEPOINT active_record_1
1631
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 76], ["blog_id", 1], ["body", "Quia assumenda ratione rem voluptatibus. Sequi libero in officia. Cupiditate unde iusto iure. Aspernatur delectus quo quam unde non. Id in perferendis repudiandae et ut ipsam ea. Voluptatem iure vitae qui magni soluta asperiores consequuntur."], ["created_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["excerpt", "Et quibusdam delectus aut repellat dolores."], ["published", true], ["title", "Eum esse quo aut."], ["updated_at", Wed, 14 Nov 2012 18:53:44 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1632
+ 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)
1633
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1634
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')
1635
+  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_59aabe5 ON posts_taggings_59aabe5.taggable_id = almanac_posts.id AND posts_taggings_59aabe5.taggable_type = 'Almanac::Post' AND posts_taggings_59aabe5.tag_id = 1 WHERE "almanac_posts"."published" = 't'
1636
+  (5.2ms) rollback transaction
1637
+  (0.1ms) begin transaction
1638
+  (0.0ms) SAVEPOINT active_record_1
1639
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
1640
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["description", "Vitae odio autem et consequatur. Perspiciatis natus asperiores. Nisi sint aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Fugit corporis aut maiores neque pariatur."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00]]
1641
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1642
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1643
+  (0.0ms) SAVEPOINT active_record_1
1644
+ SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 78], ["blog_id", 1], ["body", "Ratione dolores consequuntur eos nemo porro. Possimus ipsa magni. Voluptas eos maiores esse dolor odio temporibus. Praesentium sapiente adipisci rerum quo. Voluptas est dolores aut voluptatibus et suscipit nostrum. Qui omnis occaecati minima sint aut."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Eos ut rerum ut dolor."], ["published", true], ["title", "Qui est blanditiis sit molestias."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1645
+ 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')
1646
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
1647
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
1648
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test48' LIMIT 1
1649
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test48"]]
1650
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec48' LIMIT 1
1651
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec48"]]
1652
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby48' LIMIT 1
1653
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby48"]]
1654
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails48' LIMIT 1
1655
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails48"]]
1656
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1657
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1658
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1659
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1660
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1661
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1662
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1663
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1664
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1665
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1666
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1667
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1668
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1669
+  (0.1ms) SAVEPOINT active_record_1
1670
+ SQL (25.1ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 79], ["blog_id", 1], ["body", "Laborum qui quia modi possimus. Veniam reprehenderit laudantium. Rerum porro facere rerum ea dicta odit. Corporis qui et nulla voluptas non consequatur culpa. Est in qui molestias qui mollitia inventore. Eligendi vel nesciunt."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Explicabo."], ["published", true], ["title", "Suscipit quae modi temporibus odit perspiciatis."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1671
+ 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')
1672
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test49' LIMIT 1
1673
+ SQL (35.4ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test49"]]
1674
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec49' LIMIT 1
1675
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec49"]]
1676
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby49' LIMIT 1
1677
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby49"]]
1678
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails49' LIMIT 1
1679
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails49"]]
1680
+ 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)
1681
+ ActsAsTaggableOn::Tagging 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
1682
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1683
+ 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
1684
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1685
+ 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
1686
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1687
+ 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
1688
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1689
+ 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
1690
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1691
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1692
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1693
+  (0.0ms) SAVEPOINT active_record_1
1694
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 80], ["blog_id", 1], ["body", "Amet minima minus beatae nostrum et commodi. Dolores nobis molestias dolore dolor. Quibusdam et itaque ea qui est assumenda ea. Quis accusantium tenetur esse enim voluptatem. Sit fugiat reprehenderit quas."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Non eius quia."], ["published", true], ["title", "Corporis tempore autem dolorem."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1695
+ 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')
1696
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test50' LIMIT 1
1697
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test50"]]
1698
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec50' LIMIT 1
1699
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec50"]]
1700
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby50' LIMIT 1
1701
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby50"]]
1702
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails50' LIMIT 1
1703
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails50"]]
1704
+ 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)
1705
+ ActsAsTaggableOn::Tagging 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
1706
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1707
+ 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
1708
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1709
+ 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
1710
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1711
+ 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
1712
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1713
+ 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
1714
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1715
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1716
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1717
+  (0.0ms) SAVEPOINT active_record_1
1718
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 81], ["blog_id", 1], ["body", "Consequatur quae fugit itaque mollitia et maiores. Dicta odit aut et velit ipsam mollitia ipsum. Doloremque sint soluta animi. Nobis dolores eum velit. Eos voluptatem maxime ipsum quis illum itaque id. Esse corrupti et quo nobis ut sed voluptatem. Molestiae iusto quos repellendus aspernatur assumenda rerum."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Quia dolor."], ["published", true], ["title", "Et dolorum et quos nostrum sapiente."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1719
+ 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')
1720
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test51' LIMIT 1
1721
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test51"]]
1722
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec51' LIMIT 1
1723
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec51"]]
1724
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby51' LIMIT 1
1725
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby51"]]
1726
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails51' LIMIT 1
1727
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails51"]]
1728
+ 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)
1729
+ ActsAsTaggableOn::Tagging 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
1730
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1731
+ 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
1732
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1733
+ 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
1734
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1735
+ 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
1736
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1737
+ 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
1738
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1739
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1740
+ Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1
1741
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1742
+  (0.0ms) SAVEPOINT active_record_1
1743
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 82], ["blog_id", 1], ["body", "Nostrum rerum ut. Harum excepturi aut quidem dolor qui. Cupiditate odit ut eaque. Unde nihil ut aspernatur. Sit ratione tempora. Sunt repellendus porro omnis vel qui. Odio officiis provident molestiae."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Incidunt est laudantium."], ["published", false], ["title", "Ut pariatur quam possimus repellat perspiciatis sint et."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1744
+ 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')
1745
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test52' LIMIT 1
1746
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test52"]]
1747
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec52' LIMIT 1
1748
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec52"]]
1749
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby52' LIMIT 1
1750
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby52"]]
1751
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails52' LIMIT 1
1752
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails52"]]
1753
+ 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)
1754
+ ActsAsTaggableOn::Tagging 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
1755
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1756
+ 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
1757
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1758
+ 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
1759
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1760
+ 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
1761
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1762
+ 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
1763
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1764
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1765
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1766
+  (0.0ms) SAVEPOINT active_record_1
1767
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 83], ["blog_id", 1], ["body", "Natus fugit itaque soluta assumenda. Est voluptatum numquam. Asperiores rem a reiciendis sed quam. Voluptas optio a temporibus voluptatem quia. In occaecati sunt voluptas. Magni consequatur nihil dolorem. Magni itaque vero qui amet ratione non."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Qui velit."], ["published", false], ["title", "Aut repellendus dolorum veritatis autem nemo deserunt."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1768
+ 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')
1769
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test53' LIMIT 1
1770
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test53"]]
1771
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec53' LIMIT 1
1772
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec53"]]
1773
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby53' LIMIT 1
1774
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby53"]]
1775
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails53' LIMIT 1
1776
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails53"]]
1777
+ 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)
1778
+ ActsAsTaggableOn::Tagging 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
1779
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1780
+ 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
1781
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1782
+ 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
1783
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1784
+ 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
1785
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1786
+ 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
1787
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1789
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1790
+  (0.0ms) SAVEPOINT active_record_1
1791
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 84], ["blog_id", 1], ["body", "Tempore temporibus recusandae quam eos. Architecto dolorum perspiciatis ducimus unde dolorem. Asperiores qui omnis incidunt quas. Corporis voluptas dolorem et voluptas sunt. Atque consequatur et laboriosam deserunt qui voluptatum vel. Suscipit magni dolor distinctio nesciunt exercitationem aut est. Asperiores eos eum."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Quo optio porro voluptate qui."], ["published", false], ["title", "Cum natus minima."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1792
+ 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')
1793
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test54' LIMIT 1
1794
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test54"]]
1795
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec54' LIMIT 1
1796
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec54"]]
1797
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby54' LIMIT 1
1798
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby54"]]
1799
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails54' LIMIT 1
1800
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails54"]]
1801
+ 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)
1802
+ ActsAsTaggableOn::Tagging 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
1803
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1804
+ 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
1805
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1806
+ 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
1807
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1808
+ 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
1809
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1810
+ 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
1811
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1812
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1813
+  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 't'
1814
+  (14.0ms) rollback transaction
1815
+  (0.1ms) begin transaction
1816
+  (0.0ms) rollback transaction
1817
+  (0.0ms) begin transaction
1818
+  (0.0ms) SAVEPOINT active_record_1
1819
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'flavio@example.com' LIMIT 1
1820
+ Binary data inserted for `string` type on column `encrypted_password`
1821
+ 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", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "flavio@example.com"], ["encrypted_password", "$2a$04$IkOnswS/Rjh4rPHO5.6aGO3IqfVAcrmTP2ciYzIMBuGnsq2dyoZk6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00]]
1822
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1823
+  (0.0ms) SAVEPOINT active_record_1
1824
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
1825
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["description", "Dolores nam iusto nulla itaque perferendis nobis consequatur. Eum laudantium harum vero. Magnam beatae architecto. Est vel velit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Velit sit recusandae temporibus."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00]]
1826
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1827
+ Processing by Almanac::PostsController#tag as HTML
1828
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
1829
+ Completed 200 OK in 25ms (Views: 19.8ms | ActiveRecord: 0.1ms)
1830
+  (1.1ms) rollback transaction
1831
+  (0.0ms) begin transaction
1832
+  (0.1ms) SAVEPOINT active_record_1
1833
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'beverly@example.net' LIMIT 1
1834
+ Binary data inserted for `string` type on column `encrypted_password`
1835
+ 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", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "beverly@example.net"], ["encrypted_password", "$2a$04$B4KDQmBe6Fv/D8hmTGQJ.ud/INheN1T0HF7.F5D7ygEg1wwNdeisy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00]]
1836
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1837
+  (0.0ms) SAVEPOINT active_record_1
1838
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
1839
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["description", "Non voluptate dolores nam nulla. Et nesciunt qui. Nihil dolor dolores sapiente vel quos reprehenderit suscipit. Fuga omnis facilis. Quisquam incidunt nihil tempora eius eos consequatur consequuntur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor veniam debitis maxime modi nisi doloribus."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00]]
1840
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1841
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1842
+  (0.0ms) SAVEPOINT active_record_1
1843
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 87], ["blog_id", 1], ["body", "Voluptatem aut iure autem sit blanditiis molestiae enim. Deleniti rerum occaecati velit ab illum fugit. Et voluptatem expedita iure. Doloremque repellendus non. Asperiores nihil doloribus dolorem quia velit temporibus quia."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Fugiat veritatis expedita."], ["published", true], ["title", "Architecto atque tenetur fuga et accusantium possimus id."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1844
+ 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')
1845
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
1846
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
1847
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test55' LIMIT 1
1848
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test55"]]
1849
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec55' LIMIT 1
1850
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec55"]]
1851
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby55' LIMIT 1
1852
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby55"]]
1853
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails55' LIMIT 1
1854
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails55"]]
1855
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1856
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1857
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1858
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1859
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1860
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1861
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1862
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1863
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1864
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1865
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1866
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1867
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1868
+  (0.0ms) SAVEPOINT active_record_1
1869
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 88], ["blog_id", 1], ["body", "Et aliquid ut provident. Dolor quia corporis. Vel et et et molestiae qui corrupti. Reiciendis quia dolore fuga quibusdam similique ipsa. Expedita ut placeat. Ut autem aspernatur nobis. Dolorem sed possimus."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Sapiente nihil dolores."], ["published", true], ["title", "Est magnam ea voluptas itaque."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1870
+ 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')
1871
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test56' LIMIT 1
1872
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test56"]]
1873
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec56' LIMIT 1
1874
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec56"]]
1875
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby56' LIMIT 1
1876
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby56"]]
1877
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails56' LIMIT 1
1878
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails56"]]
1879
+ 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)
1880
+ ActsAsTaggableOn::Tagging 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
1881
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1882
+ 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
1883
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1884
+ 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
1885
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1886
+ 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
1887
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1888
+ 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
1889
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1891
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1892
+  (0.0ms) SAVEPOINT active_record_1
1893
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 89], ["blog_id", 1], ["body", "Placeat earum et quia veniam quia. Autem modi et consequatur est fugit. Inventore praesentium iure consequatur vero fuga dolorum. Temporibus sit amet sunt rerum tempora qui similique. Fugiat qui iusto sunt odio quas ut."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Ut magni voluptas."], ["published", true], ["title", "Nostrum omnis sunt."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1894
+ 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')
1895
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test57' LIMIT 1
1896
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test57"]]
1897
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec57' LIMIT 1
1898
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec57"]]
1899
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby57' LIMIT 1
1900
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby57"]]
1901
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails57' LIMIT 1
1902
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails57"]]
1903
+ 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)
1904
+ ActsAsTaggableOn::Tagging 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
1905
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1906
+ 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
1907
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1908
+ 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
1909
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1910
+ 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
1911
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1912
+ 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
1913
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1914
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1915
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1916
+  (0.0ms) SAVEPOINT active_record_1
1917
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 90], ["blog_id", 1], ["body", "At cum laudantium in exercitationem enim nostrum. Alias dolores quas. Cum quod dolorem odit adipisci veritatis. Ut autem rem aut consequuntur provident doloremque. Odit qui dolorum. Iusto omnis et ab a quo. Possimus at recusandae voluptatum ab aperiam."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Nemo."], ["published", true], ["title", "Laborum cum quo rem repellat sit aut error."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1918
+ 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')
1919
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test58' LIMIT 1
1920
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test58"]]
1921
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec58' LIMIT 1
1922
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec58"]]
1923
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby58' LIMIT 1
1924
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby58"]]
1925
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails58' LIMIT 1
1926
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails58"]]
1927
+ 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)
1928
+ ActsAsTaggableOn::Tagging 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
1929
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1930
+ 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
1931
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1932
+ 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
1933
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1934
+ 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
1935
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1936
+ 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
1937
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1938
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1939
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1940
+  (0.0ms) SAVEPOINT active_record_1
1941
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 91], ["blog_id", 1], ["body", "Error voluptas sapiente. Sint sed dicta minima inventore. Ducimus quia unde. Repudiandae et perferendis ut illum. Qui rerum similique hic doloremque cumque exercitationem voluptatem. Mollitia aperiam ut beatae unde veritatis. Quibusdam autem sit vero rerum."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Est accusantium praesentium sunt quis."], ["published", true], ["title", "Dicta veniam quibusdam officiis recusandae non."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1942
+ 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')
1943
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test59' LIMIT 1
1944
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test59"]]
1945
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec59' LIMIT 1
1946
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec59"]]
1947
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby59' LIMIT 1
1948
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby59"]]
1949
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails59' LIMIT 1
1950
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails59"]]
1951
+ 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)
1952
+ ActsAsTaggableOn::Tagging 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
1953
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1954
+ 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
1955
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1956
+ 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
1957
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1958
+ 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
1959
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1960
+ 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
1961
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1962
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1963
+ Processing by Almanac::PostsController#tag as HTML
1964
+ Parameters: {"tag_name"=>"common"}
1965
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
1966
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')
1967
+ Completed 200 OK in 7ms (Views: 1.4ms | ActiveRecord: 0.2ms)
1968
+ Almanac::Post Load (0.3ms) SELECT "almanac_posts".* FROM "almanac_posts" JOIN taggings posts_taggings_083421b ON posts_taggings_083421b.taggable_id = almanac_posts.id AND posts_taggings_083421b.taggable_type = 'Almanac::Post' AND posts_taggings_083421b.tag_id = 1 WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0
1969
+  (0.9ms) rollback transaction
1970
+  (0.0ms) begin transaction
1971
+  (0.0ms) SAVEPOINT active_record_1
1972
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'winnifred@example.com' LIMIT 1
1973
+ Binary data inserted for `string` type on column `encrypted_password`
1974
+ 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", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "winnifred@example.com"], ["encrypted_password", "$2a$04$tENY3nvDiOm79AvnzFpgiuterBHBzVrjgGREEz.0MO2enxVVOUtFe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00]]
1975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1976
+  (0.0ms) SAVEPOINT active_record_1
1977
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
1978
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["description", "Dolores nam iusto nulla itaque perferendis nobis consequatur. Eum laudantium harum vero. Magnam beatae architecto. Est vel velit. Ut voluptas maxime eaque ducimus ipsum quo."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Modi voluptatum iure molestiae doloremque eos molestiae."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00]]
1979
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1980
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1981
+  (0.0ms) SAVEPOINT active_record_1
1982
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 93], ["blog_id", 1], ["body", "Dolore a vel magni. Fugiat quo tenetur minus quia. Asperiores voluptatem alias iusto. Eveniet exercitationem et nemo aliquam quia. Exercitationem molestiae est ex earum fugit illo. Molestias nesciunt distinctio nihil quis enim quia. Repudiandae facilis ea vero eum."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Ut aut ut quia architecto."], ["published", false], ["title", "Sed repudiandae necessitatibus maxime."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
1983
+ 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')
1984
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
1985
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
1986
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test60' LIMIT 1
1987
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test60"]]
1988
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec60' LIMIT 1
1989
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec60"]]
1990
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby60' LIMIT 1
1991
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby60"]]
1992
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails60' LIMIT 1
1993
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails60"]]
1994
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
1995
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1996
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1997
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
1998
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
1999
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2000
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2001
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2002
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2003
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2004
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2005
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2006
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2007
+  (0.0ms) SAVEPOINT active_record_1
2008
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 94], ["blog_id", 1], ["body", "At commodi accusantium voluptas eos dolor consequatur necessitatibus. Deserunt rerum velit officiis eum est. Beatae dignissimos ratione ullam vero et. Suscipit quibusdam reprehenderit voluptatem officia quidem. Ut aut consectetur aut. Quibusdam sit odio earum consequatur."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Necessitatibus."], ["published", false], ["title", "Dolore eligendi ipsum perferendis repellat ut quia."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2009
+ 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')
2010
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test61' LIMIT 1
2011
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test61"]]
2012
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec61' LIMIT 1
2013
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec61"]]
2014
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby61' LIMIT 1
2015
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby61"]]
2016
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails61' LIMIT 1
2017
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails61"]]
2018
+ 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)
2019
+ ActsAsTaggableOn::Tagging 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
2020
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2021
+ 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
2022
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2023
+ 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
2024
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2025
+ 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
2026
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2027
+ 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
2028
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2029
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2030
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2031
+  (0.0ms) SAVEPOINT active_record_1
2032
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 95], ["blog_id", 1], ["body", "Accusamus veniam illum aut tempore. Magnam similique neque excepturi dignissimos repellendus qui modi. Voluptatibus temporibus sapiente quidem tempore et odit enim. Quisquam illo quia sint inventore velit. Numquam quasi consectetur. Eum omnis et ut quos hic. Voluptatibus atque quidem at id."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Adipisci et dolore aut."], ["published", false], ["title", "Est et quas accusamus minima rerum voluptatem et."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2033
+ 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')
2034
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test62' LIMIT 1
2035
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test62"]]
2036
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec62' LIMIT 1
2037
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec62"]]
2038
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby62' LIMIT 1
2039
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby62"]]
2040
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails62' LIMIT 1
2041
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails62"]]
2042
+ 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)
2043
+ ActsAsTaggableOn::Tagging 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
2044
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2045
+ 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
2046
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2047
+ 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
2048
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2049
+ 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
2050
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2051
+ 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
2052
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2053
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2054
+ Processing by Almanac::PostsController#index as HTML
2055
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2056
+ Completed 200 OK in 8ms (Views: 2.5ms | ActiveRecord: 0.1ms)
2057
+ Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f' ORDER BY written_at DESC, id DESC
2058
+  (0.8ms) rollback transaction
2059
+  (0.0ms) begin transaction
2060
+  (0.0ms) SAVEPOINT active_record_1
2061
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'malinda_reichel@example.net' LIMIT 1
2062
+ Binary data inserted for `string` type on column `encrypted_password`
2063
+ 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", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "malinda_reichel@example.net"], ["encrypted_password", "$2a$04$JyVlKMzdULc.pvR.BJQ06e1IpoW/hlgijcEJRWhp8s8Ye3G4.uXKi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00]]
2064
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2065
+  (0.0ms) SAVEPOINT active_record_1
2066
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2067
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["description", "Omnis ducimus dolore harum. Omnis aspernatur dignissimos. Quae voluptatem beatae et saepe eveniet qui qui."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et accusantium voluptate porro rerum at id."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00]]
2068
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2069
+ Processing by Almanac::PostsController#index as HTML
2070
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2071
+ Completed 200 OK in 5ms (Views: 1.4ms | ActiveRecord: 0.1ms)
2072
+  (0.7ms) rollback transaction
2073
+  (0.0ms) begin transaction
2074
+  (0.0ms) SAVEPOINT active_record_1
2075
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'claude@example.net' LIMIT 1
2076
+ Binary data inserted for `string` type on column `encrypted_password`
2077
+ 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", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "claude@example.net"], ["encrypted_password", "$2a$04$b/gQ8jz8LNCLJ/cJKwvmn.lAyuIOwbFMujXIKIreNECt/Sd14rr6G"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00]]
2078
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2079
+  (0.0ms) SAVEPOINT active_record_1
2080
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2081
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["description", "Quas et suscipit omnis. Et ab molestias dolor voluptas delectus. Sunt voluptatem veritatis voluptates omnis soluta."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Enim earum quidem."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00]]
2082
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2083
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2084
+  (0.0ms) SAVEPOINT active_record_1
2085
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 98], ["blog_id", 1], ["body", "Et similique ut quo explicabo qui. Dolores eveniet id et eligendi. Nulla quasi nobis perferendis sed pariatur dolor at. Sapiente a libero dolorem sunt. Laboriosam aut pariatur culpa soluta suscipit error."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Quos qui dolores."], ["published", true], ["title", "Sunt vitae assumenda."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2086
+ 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')
2087
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
2088
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
2089
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test63' LIMIT 1
2090
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test63"]]
2091
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec63' LIMIT 1
2092
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec63"]]
2093
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby63' LIMIT 1
2094
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby63"]]
2095
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails63' LIMIT 1
2096
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails63"]]
2097
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2098
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2099
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2100
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2101
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2102
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2103
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2104
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2105
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2106
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2107
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2109
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2110
+  (0.0ms) SAVEPOINT active_record_1
2111
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 99], ["blog_id", 1], ["body", "Occaecati qui impedit quaerat corporis ipsa voluptates. Eligendi harum expedita facilis provident at voluptas. Est aut aspernatur doloribus deserunt eos neque omnis. Rerum maiores dolores provident aspernatur aut totam. Nulla inventore dolores qui. Quam omnis quis. Temporibus deserunt assumenda eum distinctio."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Maiores."], ["published", true], ["title", "Laboriosam quis ea reprehenderit sequi nobis voluptatem."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2112
+ 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')
2113
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test64' LIMIT 1
2114
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test64"]]
2115
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec64' LIMIT 1
2116
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec64"]]
2117
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby64' LIMIT 1
2118
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby64"]]
2119
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails64' LIMIT 1
2120
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails64"]]
2121
+ 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)
2122
+ ActsAsTaggableOn::Tagging 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
2123
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2124
+ 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
2125
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2126
+ 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
2127
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2128
+ 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
2129
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2130
+ 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
2131
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2133
+ ActsAsTaggableOn::Tag Load (43.9ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2134
+  (0.0ms) SAVEPOINT active_record_1
2135
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 100], ["blog_id", 1], ["body", "Voluptatum officia quo cumque molestiae doloribus harum. Ratione aut impedit minus. Neque aperiam tempore. Sint debitis ratione qui quaerat consequuntur ipsum. Quasi itaque rerum non accusamus quia cumque aut. Beatae est rerum vel velit natus. Aspernatur et cupiditate voluptates."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Eos neque aut aliquid."], ["published", true], ["title", "Tempora nisi blanditiis doloribus optio est rem illo."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2136
+ 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')
2137
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test65' LIMIT 1
2138
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test65"]]
2139
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec65' LIMIT 1
2140
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec65"]]
2141
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby65' LIMIT 1
2142
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby65"]]
2143
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails65' LIMIT 1
2144
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails65"]]
2145
+ 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)
2146
+ ActsAsTaggableOn::Tagging 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
2147
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2148
+ 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
2149
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2150
+ 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
2151
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2152
+ 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
2153
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2154
+ 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
2155
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2156
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2157
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2158
+  (0.0ms) SAVEPOINT active_record_1
2159
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 101], ["blog_id", 1], ["body", "Sed repellendus et nemo quas non ut aut. Quo eos nam sint consequatur. Facilis velit nulla expedita molestiae ut voluptatem architecto. Expedita dolor sed. Mollitia totam similique."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Laborum sit omnis exercitationem atque eum."], ["published", true], ["title", "Exercitationem quia aut magni qui eum molestias cum."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2160
+ 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')
2161
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test66' LIMIT 1
2162
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test66"]]
2163
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec66' LIMIT 1
2164
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec66"]]
2165
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby66' LIMIT 1
2166
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby66"]]
2167
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails66' LIMIT 1
2168
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails66"]]
2169
+ 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)
2170
+ ActsAsTaggableOn::Tagging 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
2171
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2172
+ 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
2173
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2174
+ 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
2175
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2176
+ 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
2177
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2178
+ 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
2179
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2180
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2181
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2182
+  (0.0ms) SAVEPOINT active_record_1
2183
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 102], ["blog_id", 1], ["body", "Qui consequatur ipsa aut. Magnam et voluptatem est quasi ut quos. Eveniet in sed repellat sapiente perspiciatis quia. Sit minus voluptatem. Amet non quos dolorem recusandae. Voluptatem qui rerum harum et."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Doloribus recusandae necessitatibus magnam voluptas facere."], ["published", true], ["title", "Voluptatem facere reprehenderit est dolore consectetur voluptas."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2184
+ 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')
2185
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test67' LIMIT 1
2186
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test67"]]
2187
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec67' LIMIT 1
2188
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec67"]]
2189
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby67' LIMIT 1
2190
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby67"]]
2191
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails67' LIMIT 1
2192
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails67"]]
2193
+ 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)
2194
+ ActsAsTaggableOn::Tagging 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
2195
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2196
+ 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
2197
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2198
+ 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
2199
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2200
+ 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
2201
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2202
+ 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
2203
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2205
+ Processing by Almanac::PostsController#index as HTML
2206
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2207
+ Completed 200 OK in 6ms (Views: 1.6ms | ActiveRecord: 0.1ms)
2208
+ 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
2209
+  (0.6ms) rollback transaction
2210
+  (0.0ms) begin transaction
2211
+  (0.1ms) SAVEPOINT active_record_1
2212
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'flavio@example.com' LIMIT 1
2213
+ Binary data inserted for `string` type on column `encrypted_password`
2214
+ 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", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "flavio@example.com"], ["encrypted_password", "$2a$04$Sw1HkEeuNkZeiYMq1Dq.leIkNJnZ/T8IML.AhR/aY4/8HglXmGmVS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00]]
2215
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2216
+  (0.0ms) SAVEPOINT active_record_1
2217
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2218
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["description", "Dolores nam iusto nulla itaque perferendis nobis consequatur. Eum laudantium harum vero. Magnam beatae architecto. Est vel velit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Velit sit recusandae temporibus."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00]]
2219
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2220
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2221
+  (0.0ms) SAVEPOINT active_record_1
2222
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 104], ["blog_id", 1], ["body", "Ut aut mollitia quia maiores officiis. Dolore a vel magni. Fugiat quo tenetur minus quia. Asperiores voluptatem alias iusto. Eveniet exercitationem et nemo aliquam quia."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Sed repudiandae."], ["published", true], ["title", "Ut voluptas maxime eaque ducimus ipsum quo."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2223
+ 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')
2224
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
2225
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
2226
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test68' LIMIT 1
2227
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test68"]]
2228
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec68' LIMIT 1
2229
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec68"]]
2230
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby68' LIMIT 1
2231
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby68"]]
2232
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails68' LIMIT 1
2233
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails68"]]
2234
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2235
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2236
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2237
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2238
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2239
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2240
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2241
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2242
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2243
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2244
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2245
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2246
+ Processing by Almanac::PostsController#update as HTML
2247
+ Parameters: {"id"=>"1", "post"=>{"title"=>nil, "excerpt"=>"Exercitationem molestiae est ex earum.", "body"=>"Impedit omnis doloribus autem aut. Repudiandae facilis ea vero eum. Dolore eligendi ipsum perferendis repellat ut quia. Necessitatibus eligendi aut. Officia alias iure voluptatibus.", "published"=>true, "tag_list"=>"common,test69,rspec69,ruby69,#rails69", "author_id"=>"105", "written_at"=>"2012-11-14"}}
2248
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2249
+ 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"]]
2250
+ 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"]]
2251
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2252
+  (0.0ms) SAVEPOINT active_record_1
2253
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2254
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2255
+ Completed 200 OK in 13ms (Views: 2.6ms | ActiveRecord: 0.5ms)
2256
+  (0.6ms) rollback transaction
2257
+  (0.0ms) begin transaction
2258
+  (0.0ms) SAVEPOINT active_record_1
2259
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'uriel@example.net' LIMIT 1
2260
+ Binary data inserted for `string` type on column `encrypted_password`
2261
+ 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", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "uriel@example.net"], ["encrypted_password", "$2a$04$McgBx.I1eW0DSTwDdv1hxu84v7mrifXJl3pf9M9W0HBocpCDnhOd2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00]]
2262
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2263
+  (0.1ms) SAVEPOINT active_record_1
2264
+ Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2265
+ 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", 106], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["description", "Veritatis eaque delectus. Possimus qui ipsam quisquam incidunt. Facere consequatur quae provident reprehenderit maiores. Facilis nisi blanditiis cum eos perferendis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ipsam earum id sint."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00]]
2266
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2267
+ 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)
2268
+  (0.0ms) SAVEPOINT active_record_1
2269
+ SQL (11.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 107], ["blog_id", 1], ["body", "Consequatur minima debitis odio et id perferendis. Ab sed hic ut. Qui dicta dolore nesciunt molestiae itaque error. Iste accusamus doloremque quis vel rerum ea eos. Suscipit dolore ad et assumenda quasi est. Sint suscipit veritatis cum nulla. Inventore qui itaque incidunt est tempore quia."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Enim est."], ["published", true], ["title", "Voluptates ut ad occaecati iure magni aut."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2270
+ 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')
2271
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
2272
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
2273
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test70' LIMIT 1
2274
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test70"]]
2275
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec70' LIMIT 1
2276
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec70"]]
2277
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby70' LIMIT 1
2278
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby70"]]
2279
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails70' LIMIT 1
2280
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails70"]]
2281
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2282
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2283
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2284
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2285
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2286
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2287
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2288
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2289
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2290
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2291
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2292
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2293
+ Processing by Almanac::PostsController#update as HTML
2294
+ Parameters: {"id"=>"1", "post"=>{"title"=>nil, "excerpt"=>"Et accusantium voluptate porro rerum at.", "body"=>"Omnis ducimus dolore harum. Omnis aspernatur dignissimos. Quae voluptatem beatae et saepe eveniet qui qui. Tempora necessitatibus et vel est. Ipsa rerum dolor.", "published"=>true, "tag_list"=>"common,test71,rspec71,ruby71,#rails71", "author_id"=>"108", "written_at"=>"2012-11-14"}}
2295
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2296
+ 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"]]
2297
+ 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"]]
2298
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2299
+  (0.0ms) SAVEPOINT active_record_1
2300
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2301
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2302
+ Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.5ms)
2303
+ Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]
2304
+  (0.7ms) rollback transaction
2305
+  (0.0ms) begin transaction
2306
+  (0.0ms) SAVEPOINT active_record_1
2307
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'flavio@example.com' LIMIT 1
2308
+ Binary data inserted for `string` type on column `encrypted_password`
2309
+ 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", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "flavio@example.com"], ["encrypted_password", "$2a$04$7LHEKFkjmXA1THjLeS29Ne2nHggAPNGw8i4RkOqeUp/gVHu8C0QFi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00]]
2310
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2311
+  (0.0ms) SAVEPOINT active_record_1
2312
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2313
+ 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", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["description", "Dolores nam iusto nulla itaque perferendis nobis consequatur. Eum laudantium harum vero. Magnam beatae architecto. Est vel velit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Velit sit recusandae temporibus."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00]]
2314
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2315
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2316
+  (0.0ms) SAVEPOINT active_record_1
2317
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 110], ["blog_id", 1], ["body", "Ut aut mollitia quia maiores officiis. Dolore a vel magni. Fugiat quo tenetur minus quia. Asperiores voluptatem alias iusto. Eveniet exercitationem et nemo aliquam quia."], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["excerpt", "Sed repudiandae."], ["published", true], ["title", "Ut voluptas maxime eaque ducimus ipsum quo."], ["updated_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2318
+ 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')
2319
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
2320
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
2321
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test72' LIMIT 1
2322
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test72"]]
2323
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec72' LIMIT 1
2324
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec72"]]
2325
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby72' LIMIT 1
2326
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby72"]]
2327
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails72' LIMIT 1
2328
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails72"]]
2329
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2330
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2331
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2332
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2333
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2334
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2335
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2336
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2337
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2338
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2339
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:45 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2340
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2341
+ Processing by Almanac::PostsController#update as HTML
2342
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Exercitationem molestiae est ex earum fugit illo.", "excerpt"=>"Molestias nesciunt distinctio nihil quis.", "body"=>"Rerum voluptates harum quo esse est praesentium pariatur. Blanditiis animi inventore cupiditate dicta non vel aspernatur. Quaerat quas consequatur aliquid quibusdam. At commodi accusantium voluptas eos dolor consequatur necessitatibus. Deserunt rerum velit officiis eum est. Beatae dignissimos ratione ullam vero et. Suscipit quibusdam reprehenderit voluptatem officia quidem.", "published"=>true, "tag_list"=>"common,test73,rspec73,ruby73,#rails73", "author_id"=>"111", "written_at"=>"2012-11-14"}}
2343
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2344
+ 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"]]
2345
+ 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"]]
2346
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2347
+  (0.0ms) SAVEPOINT active_record_1
2348
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2349
+  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Exercitationem molestiae est ex earum fugit illo.', "excerpt" = 'Molestias nesciunt distinctio nihil quis.', "body" = 'Rerum voluptates harum quo esse est praesentium pariatur. Blanditiis animi inventore cupiditate dicta non vel aspernatur. Quaerat quas consequatur aliquid quibusdam. At commodi accusantium voluptas eos dolor consequatur necessitatibus. Deserunt rerum velit officiis eum est. Beatae dignissimos ratione ullam vero et. Suscipit quibusdam reprehenderit voluptatem officia quidem.', "author_id" = 111, "updated_at" = '2012-11-14 18:53:45.959774' WHERE "almanac_posts"."id" = 1
2350
+ 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')
2351
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test73' LIMIT 1
2352
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test73"]]
2353
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec73' LIMIT 1
2354
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec73"]]
2355
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby73' LIMIT 1
2356
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby73"]]
2357
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails73' LIMIT 1
2358
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails73"]]
2359
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2360
+ 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)
2361
+ ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5)
2362
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5)
2363
+ SQL (0.2ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]]
2364
+ SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]]
2365
+ SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]]
2366
+ SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]]
2367
+ 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
2368
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2369
+ 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
2370
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2371
+ 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
2372
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2373
+ 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
2374
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2375
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2376
+ Redirected to http://test.host/almanac/
2377
+ Completed 302 Found in 94ms (ActiveRecord: 2.8ms)
2378
+  (0.8ms) rollback transaction
2379
+  (0.0ms) begin transaction
2380
+  (0.0ms) SAVEPOINT active_record_1
2381
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'elenor@example.com' LIMIT 1
2382
+ Binary data inserted for `string` type on column `encrypted_password`
2383
+ 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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "elenor@example.com"], ["encrypted_password", "$2a$04$CxRr.NypKVs7Mm2Euzj93.RapVWWnVwqyhOwIY/xL02nCb.U7LuDm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2384
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2385
+  (0.0ms) SAVEPOINT active_record_1
2386
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2387
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["description", "Ipsa quam repellat. Iusto mollitia ad aut et unde. Ea aut ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ut rem quae placeat beatae."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2388
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2389
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2390
+  (0.0ms) SAVEPOINT active_record_1
2391
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 113], ["blog_id", 1], ["body", "Ad cumque optio. Praesentium laudantium eos dolorum perferendis a. Suscipit dolore ad et assumenda quasi est. Sint suscipit veritatis cum nulla. Inventore qui itaque incidunt est tempore quia."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["excerpt", "Rerum et minima ipsam provident."], ["published", true], ["title", "Corporis aspernatur voluptatem cum eos."], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2392
+ 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')
2393
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
2394
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
2395
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test74' LIMIT 1
2396
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test74"]]
2397
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec74' LIMIT 1
2398
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec74"]]
2399
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby74' LIMIT 1
2400
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby74"]]
2401
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails74' LIMIT 1
2402
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails74"]]
2403
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2404
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2405
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2406
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2407
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2408
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2409
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2410
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2411
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2412
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2413
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2414
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2415
+ Processing by Almanac::PostsController#update as HTML
2416
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Testz", "excerpt"=>"Et accusantium voluptate porro rerum at.", "body"=>"Omnis ducimus dolore harum. Omnis aspernatur dignissimos. Quae voluptatem beatae et saepe eveniet qui qui. Tempora necessitatibus et vel est. Ipsa rerum dolor.", "published"=>true, "tag_list"=>"common,test75,rspec75,ruby75,#rails75", "author_id"=>"114", "written_at"=>"2012-11-14"}}
2417
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2418
+ 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"]]
2419
+ 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"]]
2420
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2421
+  (0.0ms) SAVEPOINT active_record_1
2422
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2423
+  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Testz', "excerpt" = 'Et accusantium voluptate porro rerum at.', "body" = 'Omnis ducimus dolore harum. Omnis aspernatur dignissimos. Quae voluptatem beatae et saepe eveniet qui qui. Tempora necessitatibus et vel est. Ipsa rerum dolor.', "author_id" = 114, "updated_at" = '2012-11-14 18:53:46.087947' WHERE "almanac_posts"."id" = 1
2424
+ 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')
2425
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test75' LIMIT 1
2426
+ SQL (0.2ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test75"]]
2427
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec75' LIMIT 1
2428
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec75"]]
2429
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby75' LIMIT 1
2430
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby75"]]
2431
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails75' LIMIT 1
2432
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails75"]]
2433
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2434
+ 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)
2435
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5)
2436
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5)
2437
+ SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]]
2438
+ SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]]
2439
+ SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]]
2440
+ SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]]
2441
+ 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
2442
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2443
+ 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
2444
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2445
+ 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
2446
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2447
+ 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
2448
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2449
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2450
+ Redirected to http://test.host/almanac/
2451
+ Completed 302 Found in 29ms (ActiveRecord: 2.6ms)
2452
+ Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]
2453
+  (0.9ms) rollback transaction
2454
+  (0.1ms) begin transaction
2455
+  (0.0ms) SAVEPOINT active_record_1
2456
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'flavio@example.com' LIMIT 1
2457
+ Binary data inserted for `string` type on column `encrypted_password`
2458
+ 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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "flavio@example.com"], ["encrypted_password", "$2a$04$UCaHvR1TkhzJcNxQLW07pOcPCyMFdrRel9WkMg5t4N9OjmcZXkziC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2459
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2460
+  (0.0ms) SAVEPOINT active_record_1
2461
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2462
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["description", "Dolores nam iusto nulla itaque perferendis nobis consequatur. Eum laudantium harum vero. Magnam beatae architecto. Est vel velit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Velit sit recusandae temporibus."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2463
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2464
+ Processing by Almanac::PostsController#create as HTML
2465
+ Parameters: {"post"=>{"title"=>nil, "excerpt"=>"Ut voluptas maxime eaque ducimus.", "body"=>"Dicta magnam nam. Ut aut mollitia quia maiores officiis. Dolore a vel magni. Fugiat quo tenetur minus quia. Asperiores voluptatem alias iusto. Eveniet exercitationem et nemo aliquam quia.", "published"=>true, "tag_list"=>"common,test76,rspec76,ruby76,#rails76", "author_id"=>"116", "written_at"=>"2012-11-14", "blog_id"=>"1"}}
2466
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2467
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2468
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2469
+  (0.0ms) SAVEPOINT active_record_1
2470
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2471
+ Completed 200 OK in 24ms (Views: 15.0ms | ActiveRecord: 0.4ms)
2472
+  (0.5ms) rollback transaction
2473
+  (0.1ms) begin transaction
2474
+  (0.0ms) SAVEPOINT active_record_1
2475
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jazmyn@example.net' LIMIT 1
2476
+ Binary data inserted for `string` type on column `encrypted_password`
2477
+ 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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jazmyn@example.net"], ["encrypted_password", "$2a$04$y2BITD5esZGT9NTmXcbb5.6LPHg2/15QEzq.Q.XszmMChIOXS9Lp2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2478
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2479
+  (0.0ms) SAVEPOINT active_record_1
2480
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2481
+ 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", 117], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["description", "Minima molestiae doloribus consectetur voluptatem fuga. Laudantium ut ab ad exercitationem. Nobis fuga deleniti. Nihil dolorem saepe perspiciatis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Accusantium cum suscipit."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2482
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2483
+  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"
2484
+ Processing by Almanac::PostsController#create as HTML
2485
+ Parameters: {"post"=>{"title"=>nil, "excerpt"=>"Omnis commodi qui repudiandae.", "body"=>"Tempora voluptatem ut perspiciatis sunt earum repudiandae. Nesciunt nemo provident animi autem non unde qui. Possimus qui ipsam quisquam incidunt. Facere consequatur quae provident reprehenderit maiores. Facilis nisi blanditiis cum eos perferendis. Voluptates ut ad occaecati iure magni aut. Enim est et reprehenderit.", "published"=>true, "tag_list"=>"common,test77,rspec77,ruby77,#rails77", "author_id"=>"118", "written_at"=>"2012-11-14", "blog_id"=>"1"}}
2486
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2487
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2488
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2489
+  (0.0ms) SAVEPOINT active_record_1
2490
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2491
+ Completed 200 OK in 10ms (Views: 1.4ms | ActiveRecord: 0.4ms)
2492
+  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"
2493
+  (0.7ms) rollback transaction
2494
+  (0.0ms) begin transaction
2495
+  (0.0ms) SAVEPOINT active_record_1
2496
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'flavio@example.com' LIMIT 1
2497
+ Binary data inserted for `string` type on column `encrypted_password`
2498
+ 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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "flavio@example.com"], ["encrypted_password", "$2a$04$KRarQ73Nr/fUOT8Ev4RTee.xPJZM.Ttx.GCZc376T4fzS/LCQNZAS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2499
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2500
+  (0.0ms) SAVEPOINT active_record_1
2501
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2502
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["description", "Dolores nam iusto nulla itaque perferendis nobis consequatur. Eum laudantium harum vero. Magnam beatae architecto. Est vel velit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Velit sit recusandae temporibus."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2503
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2504
+ Processing by Almanac::PostsController#create as HTML
2505
+ Parameters: {"post"=>{"title"=>"Ut voluptas maxime eaque ducimus ipsum quo.", "excerpt"=>"Sed repudiandae.", "body"=>"Ut aut mollitia quia maiores officiis. Dolore a vel magni. Fugiat quo tenetur minus quia. Asperiores voluptatem alias iusto. Eveniet exercitationem et nemo aliquam quia.", "published"=>true, "tag_list"=>"common,test78,rspec78,ruby78,#rails78", "author_id"=>"120", "written_at"=>"2012-11-14", "blog_id"=>"1"}}
2506
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2507
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2508
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2509
+  (0.0ms) SAVEPOINT active_record_1
2510
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Ut aut mollitia quia maiores officiis. Dolore a vel magni. Fugiat quo tenetur minus quia. Asperiores voluptatem alias iusto. Eveniet exercitationem et nemo aliquam quia."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["excerpt", "Sed repudiandae."], ["published", true], ["title", "Ut voluptas maxime eaque ducimus ipsum quo."], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2511
+ 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')
2512
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
2513
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
2514
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test78' LIMIT 1
2515
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test78"]]
2516
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec78' LIMIT 1
2517
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec78"]]
2518
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby78' LIMIT 1
2519
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby78"]]
2520
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails78' LIMIT 1
2521
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails78"]]
2522
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2523
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2524
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2525
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2526
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2527
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2528
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2529
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2530
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2531
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2532
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2533
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2534
+ Redirected to http://test.host/almanac/
2535
+ Completed 302 Found in 26ms (ActiveRecord: 2.2ms)
2536
+  (0.8ms) rollback transaction
2537
+  (0.1ms) begin transaction
2538
+  (0.0ms) SAVEPOINT active_record_1
2539
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jazmyn@example.net' LIMIT 1
2540
+ Binary data inserted for `string` type on column `encrypted_password`
2541
+ 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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jazmyn@example.net"], ["encrypted_password", "$2a$04$hA4bqSQ9xHNq3ya..x/AbeuDLIjyjgDRe7JQKVMrBCFtn.vMs2xZ2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2542
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2543
+  (0.0ms) SAVEPOINT active_record_1
2544
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2545
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["description", "Minima molestiae doloribus consectetur voluptatem fuga. Laudantium ut ab ad exercitationem. Nobis fuga deleniti. Nihil dolorem saepe perspiciatis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Accusantium cum suscipit."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2546
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2547
+  (0.0ms) SELECT COUNT(*) FROM "almanac_posts" 
2548
+ Processing by Almanac::PostsController#create as HTML
2549
+ Parameters: {"post"=>{"title"=>"Omnis commodi qui repudiandae porro itaque.", "excerpt"=>"Ipsam earum id.", "body"=>"Veritatis eaque delectus. Possimus qui ipsam quisquam incidunt. Facere consequatur quae provident reprehenderit maiores. Facilis nisi blanditiis cum eos perferendis. Voluptates ut ad occaecati iure magni aut. Enim est et reprehenderit.", "published"=>true, "tag_list"=>"common,test79,rspec79,ruby79,#rails79", "author_id"=>"122", "written_at"=>"2012-11-14", "blog_id"=>"1"}}
2550
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2551
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2552
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2553
+  (0.0ms) SAVEPOINT active_record_1
2554
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Veritatis eaque delectus. Possimus qui ipsam quisquam incidunt. Facere consequatur quae provident reprehenderit maiores. Facilis nisi blanditiis cum eos perferendis. Voluptates ut ad occaecati iure magni aut. Enim est et reprehenderit."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["excerpt", "Ipsam earum id."], ["published", true], ["title", "Omnis commodi qui repudiandae porro itaque."], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2555
+ 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')
2556
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
2557
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
2558
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test79' LIMIT 1
2559
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test79"]]
2560
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec79' LIMIT 1
2561
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec79"]]
2562
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby79' LIMIT 1
2563
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby79"]]
2564
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails79' LIMIT 1
2565
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails79"]]
2566
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2567
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2568
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2569
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2570
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2571
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2572
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2573
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2574
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2575
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2576
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2577
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2578
+ Redirected to http://test.host/almanac/
2579
+ Completed 302 Found in 26ms (ActiveRecord: 2.2ms)
2580
+  (0.0ms) SELECT COUNT(*) FROM "almanac_posts"
2581
+  (0.6ms) rollback transaction
2582
+  (0.0ms) begin transaction
2583
+  (0.0ms) SAVEPOINT active_record_1
2584
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'flavio@example.com' LIMIT 1
2585
+ Binary data inserted for `string` type on column `encrypted_password`
2586
+ 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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "flavio@example.com"], ["encrypted_password", "$2a$04$kF4enHdAF4JJ44n6OvOs9O/N77IF20WkcgPNhWe.fOEBMlyst00HC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2587
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2588
+  (0.0ms) SAVEPOINT active_record_1
2589
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2590
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["description", "Dolores nam iusto nulla itaque perferendis nobis consequatur. Eum laudantium harum vero. Magnam beatae architecto. Est vel velit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Velit sit recusandae temporibus."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2591
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2592
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2593
+  (0.0ms) SAVEPOINT active_record_1
2594
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 124], ["blog_id", 1], ["body", "Ut aut mollitia quia maiores officiis. Dolore a vel magni. Fugiat quo tenetur minus quia. Asperiores voluptatem alias iusto. Eveniet exercitationem et nemo aliquam quia."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["excerpt", "Sed repudiandae."], ["published", true], ["title", "Ut voluptas maxime eaque ducimus ipsum quo."], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2595
+ 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')
2596
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
2597
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
2598
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test80' LIMIT 1
2599
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test80"]]
2600
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec80' LIMIT 1
2601
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec80"]]
2602
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby80' LIMIT 1
2603
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby80"]]
2604
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails80' LIMIT 1
2605
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails80"]]
2606
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2607
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2608
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2609
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2610
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2611
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2612
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2613
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2614
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2615
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2616
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2617
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2618
+ Processing by Almanac::PostsController#destroy as HTML
2619
+ Parameters: {"id"=>"1"}
2620
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2621
+ 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"]]
2622
+  (0.0ms) SAVEPOINT active_record_1
2623
+ Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1
2624
+ Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC
2625
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post'
2626
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5)
2627
+ SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]]
2628
+ SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]]
2629
+ SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]]
2630
+ SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]]
2631
+ SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]]
2632
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags')
2633
+ SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]
2634
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2635
+ Redirected to http://test.host/almanac/
2636
+ Completed 302 Found in 19ms (ActiveRecord: 1.2ms)
2637
+  (0.9ms) rollback transaction
2638
+  (0.1ms) begin transaction
2639
+  (0.0ms) SAVEPOINT active_record_1
2640
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jazmyn@example.net' LIMIT 1
2641
+ Binary data inserted for `string` type on column `encrypted_password`
2642
+ 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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jazmyn@example.net"], ["encrypted_password", "$2a$04$KJQt/gE408VPSwaEPjDkEe4WJ8kwoU3g4by8erV0wSz/c3b2yxPQO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2643
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2644
+  (0.0ms) SAVEPOINT active_record_1
2645
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2646
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["description", "Minima molestiae doloribus consectetur voluptatem fuga. Laudantium ut ab ad exercitationem. Nobis fuga deleniti. Nihil dolorem saepe perspiciatis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Accusantium cum suscipit."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2647
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2648
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2649
+  (0.0ms) SAVEPOINT active_record_1
2650
+ SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 126], ["blog_id", 1], ["body", "Veritatis eaque delectus. Possimus qui ipsam quisquam incidunt. Facere consequatur quae provident reprehenderit maiores. Facilis nisi blanditiis cum eos perferendis. Voluptates ut ad occaecati iure magni aut. Enim est et reprehenderit."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["excerpt", "Ipsam earum id."], ["published", true], ["title", "Omnis commodi qui repudiandae porro itaque."], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2651
+ 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')
2652
+ ActsAsTaggableOn::Tag Exists (43.2ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
2653
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
2654
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test81' LIMIT 1
2655
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test81"]]
2656
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec81' LIMIT 1
2657
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec81"]]
2658
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby81' LIMIT 1
2659
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby81"]]
2660
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails81' LIMIT 1
2661
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails81"]]
2662
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2663
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2664
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2665
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2666
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2667
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2668
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2669
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2670
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2671
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2672
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2673
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2674
+  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"
2675
+ Processing by Almanac::PostsController#destroy as HTML
2676
+ Parameters: {"id"=>"1"}
2677
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2678
+ 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"]]
2679
+  (0.0ms) SAVEPOINT active_record_1
2680
+ Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1
2681
+ Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC
2682
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post'
2683
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5)
2684
+ SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]]
2685
+ SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]]
2686
+ SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]]
2687
+ SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]]
2688
+ SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]]
2689
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags')
2690
+ SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]
2691
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2692
+ Redirected to http://test.host/almanac/
2693
+ Completed 302 Found in 11ms (ActiveRecord: 0.9ms)
2694
+  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"
2695
+  (0.7ms) rollback transaction
2696
+  (0.0ms) begin transaction
2697
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2698
+  (0.0ms) SAVEPOINT active_record_1
2699
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2700
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["description", "Excepturi ut qui. Dolor ex excepturi maiores quo quos. Quaerat nesciunt consequuntur incidunt mollitia minima ea. Aut fuga aut molestias. Veritatis perspiciatis aut est laboriosam facere error."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nam sunt ut ab quia et."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2701
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2702
+  (0.0ms) SAVEPOINT active_record_1
2703
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 127], ["blog_id", 1], ["body", "At rem temporibus quam. Rerum doloribus animi. Ullam vero neque voluptate excepturi. Corrupti explicabo quas dolorum. Adipisci nostrum placeat vel. Magnam voluptatum repudiandae dolorem ut provident omnis. Hic rerum libero."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["excerpt", "Doloremque amet aut."], ["published", true], ["title", "Vero accusantium cupiditate consequatur."], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2704
+ 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')
2705
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
2706
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
2707
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test82' LIMIT 1
2708
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test82"]]
2709
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec82' LIMIT 1
2710
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec82"]]
2711
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby82' LIMIT 1
2712
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby82"]]
2713
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails82' LIMIT 1
2714
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails82"]]
2715
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2716
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2717
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2718
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2719
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2720
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2721
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2722
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2723
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2724
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2725
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2726
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2727
+  (0.7ms) rollback transaction
2728
+  (0.0ms) begin transaction
2729
+ 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)
2730
+  (0.0ms) SAVEPOINT active_record_1
2731
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2732
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["description", "Pariatur molestias fugit quod. Vitae eaque sed. Omnis asperiores accusantium sint ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quo ut et esse incidunt."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2733
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2734
+  (0.0ms) SAVEPOINT active_record_1
2735
+ SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 129], ["blog_id", 1], ["body", "Ut expedita aperiam ducimus aut minus. Non reprehenderit tempora culpa sint modi. Quas nihil commodi officiis optio. Totam cumque quo harum. Corrupti dolorem quidem quos in reiciendis dolore. Soluta voluptas voluptas quia dolorem autem dolores deleniti. Voluptas et natus."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["excerpt", "Distinctio veniam culpa aut at."], ["published", true], ["title", "Ut blanditiis fuga ex a doloremque."], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2736
+ 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')
2737
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
2738
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
2739
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test83' LIMIT 1
2740
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test83"]]
2741
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec83' LIMIT 1
2742
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec83"]]
2743
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby83' LIMIT 1
2744
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby83"]]
2745
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails83' LIMIT 1
2746
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails83"]]
2747
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2748
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2749
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2750
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2751
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2752
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2753
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2754
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2755
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2756
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2757
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2758
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2759
+  (0.0ms) SAVEPOINT active_record_1
2760
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lyric_kling@example.com"], ["author_name", "Camren Reichert"], ["body", "Aut culpa sit molestiae. Nobis ut quasi."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2761
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2762
+ Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" ORDER BY id ASC
2763
+  (0.6ms) rollback transaction
2764
+  (0.0ms) begin transaction
2765
+ 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)
2766
+  (0.0ms) SAVEPOINT active_record_1
2767
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2768
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["description", "Expedita officiis minima veritatis. Beatae optio sed dolore sunt. Modi deserunt voluptas aut. Perspiciatis sunt vel ipsa nihil dolor rem qui."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ad voluptas."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2769
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2770
+  (0.0ms) SAVEPOINT active_record_1
2771
+ SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 131], ["blog_id", 1], ["body", "Consequatur cumque molestiae voluptatem laudantium. Ducimus sequi culpa maxime est reprehenderit maiores temporibus. Vel sit voluptatem incidunt sit ea porro. Omnis ut sit consequatur reiciendis nulla iste. Accusamus et qui minus adipisci soluta sapiente est."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["excerpt", "Neque quis quia incidunt quidem."], ["published", true], ["title", "Id corrupti sint rerum iusto iste."], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2772
+ 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')
2773
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
2774
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
2775
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test84' LIMIT 1
2776
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test84"]]
2777
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec84' LIMIT 1
2778
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec84"]]
2779
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby84' LIMIT 1
2780
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby84"]]
2781
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails84' LIMIT 1
2782
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails84"]]
2783
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2784
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2785
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2786
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2787
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2788
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2789
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2790
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2791
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2792
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2793
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2794
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2795
+  (0.8ms) rollback transaction
2796
+  (0.0ms) begin transaction
2797
+ 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)
2798
+  (0.0ms) SAVEPOINT active_record_1
2799
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2800
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["description", "Repellendus autem eos saepe et est consequatur id. Est alias aliquam ratione earum ut nobis molestiae. Hic sapiente cupiditate alias vel cum eum. Accusantium eligendi laudantium expedita et veniam velit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Eius temporibus voluptatum."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2801
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2802
+  (0.0ms) SAVEPOINT active_record_1
2803
+ SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 133], ["blog_id", 1], ["body", "Et iste id dolorum. Adipisci ab incidunt est labore. Maiores quo quis nostrum et dolorum aut. Non consectetur voluptas adipisci. Iure est velit minus quibusdam."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["excerpt", "Doloremque eveniet quaerat dolor debitis repudiandae."], ["published", true], ["title", "Officiis et rerum veritatis illum reiciendis doloremque."], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2804
+ 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')
2805
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
2806
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
2807
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test85' LIMIT 1
2808
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test85"]]
2809
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec85' LIMIT 1
2810
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec85"]]
2811
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby85' LIMIT 1
2812
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby85"]]
2813
+ ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails85' LIMIT 1
2814
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails85"]]
2815
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2816
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2817
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2818
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2819
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2820
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2821
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2822
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2823
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2824
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2825
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2826
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2827
+  (0.6ms) rollback transaction
2828
+  (0.0ms) begin transaction
2829
+  (0.0ms) rollback transaction
2830
+  (0.0ms) begin transaction
2831
+ 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)
2832
+  (0.0ms) SAVEPOINT active_record_1
2833
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2834
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["description", "Nesciunt necessitatibus qui nemo voluptate. Suscipit ducimus sint iusto ratione qui. Ducimus molestiae voluptatem voluptates amet. Quae rerum amet et quasi et assumenda. Laudantium ex neque et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et magnam ea ipsa nihil explicabo qui."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2835
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2836
+  (0.0ms) SAVEPOINT active_record_1
2837
+ SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 135], ["blog_id", 1], ["body", "Praesentium et blanditiis et. Facere modi laboriosam unde sunt quaerat. Asperiores dignissimos quos dolor et et. Possimus voluptas aut eum enim consequuntur voluptatum vero. Placeat dolorem est accusantium harum dolorem vel dolores."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["excerpt", "Est eos veniam earum mollitia sed."], ["published", true], ["title", "Omnis rerum quo esse ullam autem."], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["written_at", Wed, 14 Nov 2012]]
2838
+ 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')
2839
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1
2840
+ SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]]
2841
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test86' LIMIT 1
2842
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test86"]]
2843
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec86' LIMIT 1
2844
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec86"]]
2845
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby86' LIMIT 1
2846
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby86"]]
2847
+ ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails86' LIMIT 1
2848
+ SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails86"]]
2849
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
2850
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2851
+ SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2852
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2853
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2854
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2855
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2856
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2857
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2858
+ ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1
2859
+ SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]
2860
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2861
+  (0.0ms) SAVEPOINT active_record_1
2862
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "boris_kuhn@example.net"], ["author_name", "Camden Breitenberg V"], ["body", "Eum pariatur aut autem ducimus."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2863
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2864
+  (0.0ms) SAVEPOINT active_record_1
2865
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "cloyd@example.net"], ["author_name", "Erick Jones"], ["body", "Voluptas quidem ipsum. Inventore explicabo voluptas. Culpa rerum quis."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2866
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2867
+  (0.0ms) SAVEPOINT active_record_1
2868
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jace_stamm@example.com"], ["author_name", "Mr. Kelvin Murray"], ["body", "Mollitia aut odio neque est rerum sequi. Totam omnis sequi est et. Animi ipsum perspiciatis vel quo voluptate vero."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2869
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2870
+  (0.0ms) SAVEPOINT active_record_1
2871
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "chester_leuschke@example.org"], ["author_name", "Miss Casimir Hoppe"], ["body", "Voluptatem dicta iste nihil at corrupti aut. Natus eos corporis neque et."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2872
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2873
+  (0.0ms) SAVEPOINT active_record_1
2874
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "arthur_mclaughlin@example.org"], ["author_name", "Alessandra Marvin"], ["body", "Dignissimos atque tenetur incidunt cum nobis provident."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2875
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2876
+  (0.0ms) SAVEPOINT active_record_1
2877
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "ludie@example.org"], ["author_name", "Ceasar Feeney"], ["body", "Et et iusto nisi. Illo non consequatur. Deleniti aliquam voluptatem eos aut laudantium fuga."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2878
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2879
+  (0.0ms) SAVEPOINT active_record_1
2880
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "daphnee@example.org"], ["author_name", "Grayce Will"], ["body", "Eum delectus debitis. Fugit cupiditate ipsum voluptatem et."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2881
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2882
+  (0.0ms) SAVEPOINT active_record_1
2883
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "clemmie_jones@example.com"], ["author_name", "Russell Schinner"], ["body", "Eum dolor ipsa suscipit eligendi. Autem qui quia qui officiis et. Debitis quasi in veritatis et aperiam a."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2884
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2885
+  (0.0ms) SAVEPOINT active_record_1
2886
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "caandre@example.com"], ["author_name", "Ethel Crooks"], ["body", "Distinctio sapiente non ipsam consequatur. Quaerat culpa voluptatum. Et omnis itaque."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2887
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2888
+  (0.0ms) SAVEPOINT active_record_1
2889
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "katherine@example.net"], ["author_name", "Miss Floyd Treutel"], ["body", "Sunt ab praesentium. Voluptatem tempore deleniti doloribus reiciendis repudiandae eum. Velit vitae non eum et cumque."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2891
+  (0.0ms) SAVEPOINT active_record_1
2892
+ 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
2893
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "kimberly.reynolds@example.net"], ["author_name", "Dannie Cormier"], ["body", "Aspernatur magni dolor maiores itaque dolorum doloremque modi. Minus tempora exercitationem deserunt nulla voluptatibus numquam atque. Ab ut quia."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2894
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2895
+  (0.1ms) SAVEPOINT active_record_1
2896
+ 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
2897
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "kaya@example.org"], ["author_name", "Llewellyn Prosacco"], ["body", "Sed est neque et dolor et."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2898
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2899
+  (0.0ms) SAVEPOINT active_record_1
2900
+ 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
2901
+ SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "michaela@example.net"], ["author_name", "Donnell Cruickshank"], ["body", "Voluptatem vel est iusto error voluptate sequi corrupti. Modi et qui aliquid libero quo voluptatibus. Aperiam ut saepe animi dolor sunt."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2902
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2903
+  (0.0ms) SAVEPOINT active_record_1
2904
+ 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
2905
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jarvis.haley@example.org"], ["author_name", "Mr. Lew Hodkiewicz"], ["body", "Adipisci quis ut soluta occaecati rerum labore ut. In illo iusto occaecati et delectus quo molestiae. Dolor iste non magni ut fugit."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2907
+  (0.0ms) SAVEPOINT active_record_1
2908
+ 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
2909
+ SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "darby.hills@example.com"], ["author_name", "Cristobal Herman"], ["body", "Nostrum atque maiores explicabo. Unde sit eius esse."], ["created_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2910
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2911
+  (0.1ms) SELECT COUNT(*) FROM "almanac_comments" WHERE "almanac_comments"."spam" = 't'
2912
+  (0.7ms) rollback transaction
2913
+  (0.1ms) begin transaction
2914
+  (0.0ms) rollback transaction
2915
+  (0.0ms) begin transaction
2916
+  (0.0ms) SAVEPOINT active_record_1
2917
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2918
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["description", "Eligendi eos fuga nesciunt ipsa reiciendis. Ut laborum beatae voluptatum est sint rerum odio. Aut qui minima magni quam. Molestiae dolores quo nostrum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Velit eum ea ut qui."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2919
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2920
+  (0.1ms) SAVEPOINT active_record_1
2921
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2922
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2923
+  (0.5ms) rollback transaction
2924
+  (0.0ms) begin transaction
2925
+  (0.0ms) SAVEPOINT active_record_1
2926
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2927
+ SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_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", Wed, 14 Nov 2012 18:53:46 UTC +00:00], ["description", "Vel et explicabo ut labore et sequi sint. Et numquam ipsam ratione unde incidunt aut. Quia explicabo ut ducimus eius sapiente iusto adipisci. Corrupti ad voluptatem voluptatibus non. Suscipit placeat rerum quaerat."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quia sapiente et et qui."], ["twitter", nil], ["updated_at", Wed, 14 Nov 2012 18:53:46 UTC +00:00]]
2928
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2929
+ Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1
2930
+  (0.5ms) rollback transaction