blogit 0.4.2 → 0.4.3

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.
data/README.md CHANGED
@@ -100,4 +100,4 @@ Developed by [katana:code](http://katanacode.com)
100
100
 
101
101
  ## About katana:code
102
102
 
103
- katana:code are [Ruby on Rails Developers Based in Edinburgh, Scotland](http://katanacode.github.com/ "katana:code").
103
+ katana:code are [Ruby on Rails Developers Based in Edinburgh, Scotland](http://katanacode.com/ "katana:code").
@@ -34,7 +34,7 @@ module Blogit
34
34
 
35
35
  # Returns the blog posts paginated for the index page
36
36
  # @scope class
37
- scope :for_index, lambda { |page_no = 1| order("updated_at DESC").page(page_no) }
37
+ scope :for_index, lambda { |page_no = 1| order("created_at DESC").page(page_no) }
38
38
 
39
39
  # ====================
40
40
  # = Instance Methods =
@@ -1,3 +1,3 @@
1
1
  module Blogit
2
- VERSION = "0.4.2"
2
+ VERSION = "0.4.3"
3
3
  end
@@ -45,6 +45,15 @@ Blogit.configure do |config|
45
45
  # albino.
46
46
  # config.highlight_code_syntax = true
47
47
 
48
+ # RSS Feed title content
49
+ # config.rss_feed_title = "A blog about ponies!"
50
+
51
+ # RSS Feed description content
52
+ # config.rss_feed_description = "Get your daily pony news here!"
53
+
54
+ # RSS Feed language
55
+ # config.rss_feed_language = "en"
56
+
48
57
  # When using redcarpet as content parser, pass these options as defaults.
49
58
  # @see here for more options: https://github.com/tanoku/redcarpet
50
59
  config.redcarpet_options = {
Binary file
@@ -1138,3 +1138,1135 @@ Completed 302 Found in 1ms
1138
1138
  Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1
1139
1139
   (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count 
1140
1140
   (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count
1141
+ Blogit::Post Load (23.0ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
1142
+  (1.7ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59
1143
+ Processing by Blogit::CommentsController#create as JS
1144
+ Parameters: {"post_id"=>"59", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
1145
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "59"]]
1146
+ SQL (13.8ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["website", "http://gavinmorrice.com"]]
1147
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1
1148
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59
1149
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.418403' WHERE "blog_posts"."id" = 59
1150
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1151
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.3ms)
1152
+ Completed 200 OK in 234ms (Views: 69.2ms | ActiveRecord: 14.6ms)
1153
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59
1154
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
1155
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59
1156
+ Processing by Blogit::CommentsController#create as HTML
1157
+ Parameters: {"post_id"=>"59", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
1158
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "59"]]
1159
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["website", "http://gavinmorrice.com"]]
1160
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1
1161
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59
1162
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.593591' WHERE "blog_posts"."id" = 59
1163
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1164
+ Redirected to http://test.host/blog/posts/59-tis-is-a-blog-post-title
1165
+ Completed 302 Found in 46ms
1166
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59
1167
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
1168
+ Processing by Blogit::CommentsController#create as HTML
1169
+ Parameters: {"post_id"=>"59", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
1170
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "59"]]
1171
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["website", "http://gavinmorrice.com"]]
1172
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1
1173
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59
1174
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.643181' WHERE "blog_posts"."id" = 59
1175
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1176
+ Redirected to http://test.host/blog/posts/59-tis-is-a-blog-post-title
1177
+ Completed 302 Found in 15ms
1178
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
1179
+ Processing by Blogit::CommentsController#create as HTML
1180
+ Parameters: {"post_id"=>"59", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
1181
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "59"]]
1182
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["website", "http://gavinmorrice.com"]]
1183
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1
1184
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59
1185
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.661246' WHERE "blog_posts"."id" = 59
1186
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1187
+ Redirected to http://test.host/blog/posts/59-tis-is-a-blog-post-title
1188
+ Completed 302 Found in 15ms
1189
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
1190
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["website", "http://gavinmorrice.com"]]
1191
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59
1192
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.677346' WHERE "blog_posts"."id" = 59
1193
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1194
+ User Load (16.5ms) SELECT "users".* FROM "users" LIMIT 1
1195
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 59]]
1196
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59
1197
+ Processing by Blogit::CommentsController#destroy as JS
1198
+ Parameters: {"id"=>"32", "post_id"=>"59", "use_route"=>"blogit"}
1199
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "59"]]
1200
+ Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 AND "blog_comments"."id" = ? LIMIT 1 [["id", "32"]]
1201
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1
1202
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 59
1203
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 32]]
1204
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.705157' WHERE "blog_posts"."id" = 59
1205
+ Completed 200 OK in 8ms (Views: 1.5ms | ActiveRecord: 0.7ms)
1206
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 59]]
1207
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59
1208
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
1209
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["website", "http://gavinmorrice.com"]]
1210
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59
1211
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.715846' WHERE "blog_posts"."id" = 59
1212
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1213
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1214
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 59]]
1215
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59
1216
+ Processing by Blogit::CommentsController#destroy as HTML
1217
+ Parameters: {"id"=>"33", "post_id"=>"59", "use_route"=>"blogit"}
1218
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "59"]]
1219
+ Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 AND "blog_comments"."id" = ? LIMIT 1 [["id", "33"]]
1220
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1
1221
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 59
1222
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 33]]
1223
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.726228' WHERE "blog_posts"."id" = 59
1224
+ Redirected to http://test.host/blog/posts/59-tis-is-a-blog-post-title
1225
+ Completed 302 Found in 7ms
1226
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 59]]
1227
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59
1228
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
1229
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["website", "http://gavinmorrice.com"]]
1230
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59
1231
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.736196' WHERE "blog_posts"."id" = 59
1232
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1233
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1234
+ Processing by Blogit::CommentsController#destroy as HTML
1235
+ Parameters: {"id"=>"34", "post_id"=>"59", "use_route"=>"blogit"}
1236
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "59"]]
1237
+ Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 AND "blog_comments"."id" = ? LIMIT 1 [["id", "34"]]
1238
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1
1239
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 59
1240
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 34]]
1241
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.745409' WHERE "blog_posts"."id" = 59
1242
+ Redirected to http://test.host/blog/posts/59-tis-is-a-blog-post-title
1243
+ Completed 302 Found in 7ms
1244
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
1245
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["website", "http://gavinmorrice.com"]]
1246
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59
1247
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.754929' WHERE "blog_posts"."id" = 59
1248
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1249
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
1250
+ Processing by Blogit::CommentsController#destroy as HTML
1251
+ Parameters: {"id"=>"35", "post_id"=>"59", "use_route"=>"blogit"}
1252
+ User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
1253
+ Redirected to http://test.host/blog/
1254
+ Completed 302 Found in 1ms
1255
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
1256
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
1257
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["website", "http://gavinmorrice.com"]]
1258
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59
1259
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.768140' WHERE "blog_posts"."id" = 59
1260
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1261
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
1262
+ Processing by Blogit::CommentsController#destroy as HTML
1263
+ Parameters: {"id"=>"36", "post_id"=>"59", "use_route"=>"blogit"}
1264
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
1265
+ Redirected to http://test.host/blog/
1266
+ Completed 302 Found in 1ms
1267
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
1268
+ Processing by Blogit::PostsController#index as HTML
1269
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
1270
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
1271
+ Processing by Blogit::PostsController#index as HTML
1272
+ Parameters: {"page"=>"2", "use_route"=>"blogit"}
1273
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1274
+ Processing by Blogit::PostsController#index as XML
1275
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
1276
+ Completed 200 OK in 38ms (Views: 38.0ms | ActiveRecord: 0.0ms)
1277
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1278
+ Processing by Blogit::PostsController#new as HTML
1279
+ Parameters: {"use_route"=>"blogit"}
1280
+ Completed 200 OK in 39ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1281
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1282
+ Processing by Blogit::PostsController#new as HTML
1283
+ Parameters: {"use_route"=>"blogit"}
1284
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1285
+ Processing by Blogit::PostsController#new as HTML
1286
+ Parameters: {"use_route"=>"blogit"}
1287
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
1288
+ Redirected to http://test.host/blog/
1289
+ Completed 302 Found in 1ms
1290
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1291
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["username", "bodacious"]]
1292
+ Processing by Blogit::PostsController#create as HTML
1293
+ Parameters: {"post"=>{"title"=>"Tis is a blog post title", "body"=>"This is the body of the blog post - you'll see it's a lot bigger than the title"}, "use_route"=>"blogit"}
1294
+ Redirected to http://test.host/blog/posts
1295
+ Completed 302 Found in 1ms
1296
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1297
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["username", "bodacious"]]
1298
+ Processing by Blogit::PostsController#edit as HTML
1299
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
1300
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1301
+ Processing by Blogit::PostsController#edit as HTML
1302
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
1303
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
1304
+ Redirected to http://test.host/blog/
1305
+ Completed 302 Found in 1ms
1306
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1307
+ SQL (14.7ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["username", "bodacious"]]
1308
+ Processing by Blogit::PostsController#update as HTML
1309
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
1310
+ Redirected to http://test.host/blog/posts
1311
+ Completed 302 Found in 1ms
1312
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1313
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["username", "bodacious"]]
1314
+ Processing by Blogit::PostsController#update as HTML
1315
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
1316
+ SQL (11.7ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 104], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00]]
1317
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1318
+ Redirected to http://test.host/blog/posts/74-something-new
1319
+ Completed 302 Found in 33ms
1320
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1321
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["username", "bodacious"]]
1322
+ Processing by Blogit::PostsController#update as HTML
1323
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
1324
+ SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 105], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00]]
1325
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1326
+ Redirected to http://test.host/blog/posts/75-something-new
1327
+ Completed 302 Found in 13ms
1328
+ Processing by Blogit::PostsController#update as HTML
1329
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
1330
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
1331
+ Redirected to http://test.host/blog/
1332
+ Completed 302 Found in 1ms
1333
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["username", "bodacious"]]
1334
+ Processing by Blogit::PostsController#show as HTML
1335
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
1336
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1337
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1
1338
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]]
1339
+ Processing by Blogit::PostsController#destroy as HTML
1340
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
1341
+ Redirected to http://test.host/blog/posts
1342
+ Completed 302 Found in 1ms
1343
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1344
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]]
1345
+ Processing by Blogit::PostsController#destroy as HTML
1346
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
1347
+ Redirected to http://test.host/blog/posts
1348
+ Completed 302 Found in 10ms
1349
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1350
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]]
1351
+ Processing by Blogit::PostsController#destroy as HTML
1352
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
1353
+ Redirected to http://test.host/blog/posts
1354
+ Completed 302 Found in 1ms
1355
+ Processing by Blogit::PostsController#destroy as HTML
1356
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
1357
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
1358
+ Redirected to http://test.host/blog/
1359
+ Completed 302 Found in 1ms
1360
+ SQL (174.1ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]]
1361
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 110], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00]]
1362
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1363
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]]
1364
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 111], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00]]
1365
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1366
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]]
1367
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 112], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00]]
1368
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1369
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]]
1370
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 113], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00]]
1371
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1372
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]]
1373
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 114], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00]]
1374
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1375
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]]
1376
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 115], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00]]
1377
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1378
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]]
1379
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 116], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00]]
1380
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1381
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "Jeronimo"]]
1382
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 117 LIMIT 1
1383
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "Jeronimo"]]
1384
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 118 LIMIT 1
1385
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" 
1386
+ ActsAsTaggableOn::Tagging Load (0.6ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 59 AND "taggings"."taggable_type" = 'Blogit::Post'
1387
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 59 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1388
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 59]]
1389
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 60 AND "taggings"."taggable_type" = 'Blogit::Post'
1390
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 60 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1391
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 60]]
1392
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 61 AND "taggings"."taggable_type" = 'Blogit::Post'
1393
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 61 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1394
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 61]]
1395
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 62 AND "taggings"."taggable_type" = 'Blogit::Post'
1396
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 62 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1397
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 62]]
1398
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 63 AND "taggings"."taggable_type" = 'Blogit::Post'
1399
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 63 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1400
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 63]]
1401
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 64 AND "taggings"."taggable_type" = 'Blogit::Post'
1402
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 64 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1403
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 64]]
1404
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 65 AND "taggings"."taggable_type" = 'Blogit::Post'
1405
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 65 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1406
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 65]]
1407
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 66 AND "taggings"."taggable_type" = 'Blogit::Post'
1408
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 66 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1409
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 66]]
1410
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 67 AND "taggings"."taggable_type" = 'Blogit::Post'
1411
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 67 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1412
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 67]]
1413
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 68 AND "taggings"."taggable_type" = 'Blogit::Post'
1414
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 68 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1415
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 68]]
1416
+ ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 69 AND "taggings"."taggable_type" = 'Blogit::Post'
1417
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 69 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1418
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 69]]
1419
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 70 AND "taggings"."taggable_type" = 'Blogit::Post'
1420
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 70 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1421
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 70]]
1422
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 71 AND "taggings"."taggable_type" = 'Blogit::Post'
1423
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 71 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1424
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 71]]
1425
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 72 AND "taggings"."taggable_type" = 'Blogit::Post'
1426
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 72 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1427
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 72]]
1428
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 73 AND "taggings"."taggable_type" = 'Blogit::Post'
1429
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 73 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1430
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 73]]
1431
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 74 AND "taggings"."taggable_type" = 'Blogit::Post'
1432
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 74 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1433
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 74]]
1434
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 75 AND "taggings"."taggable_type" = 'Blogit::Post'
1435
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 75 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1436
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 75]]
1437
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 76 AND "taggings"."taggable_type" = 'Blogit::Post'
1438
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 76 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1439
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 76]]
1440
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 77 AND "taggings"."taggable_type" = 'Blogit::Post'
1441
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 77 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1442
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 77]]
1443
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 78 AND "taggings"."taggable_type" = 'Blogit::Post'
1444
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 78 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1445
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 78]]
1446
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 79 AND "taggings"."taggable_type" = 'Blogit::Post'
1447
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 79 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1448
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 79]]
1449
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 80 AND "taggings"."taggable_type" = 'Blogit::Post'
1450
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 80 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1451
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 80]]
1452
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 81 AND "taggings"."taggable_type" = 'Blogit::Post'
1453
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 81 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1454
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 81]]
1455
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 82 AND "taggings"."taggable_type" = 'Blogit::Post'
1456
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 82 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1457
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 82]]
1458
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]]
1459
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 119], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00]]
1460
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1461
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]]
1462
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 120], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 28 Dec 2011 19:08:43 UTC +00:00]]
1463
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1464
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]]
1465
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 121], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 27 Dec 2011 19:08:43 UTC +00:00]]
1466
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1467
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]]
1468
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 122], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 19:08:43 UTC +00:00]]
1469
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1470
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]]
1471
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 123], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 25 Dec 2011 19:08:43 UTC +00:00]]
1472
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1473
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]]
1474
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 124], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 24 Dec 2011 19:08:43 UTC +00:00]]
1475
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1476
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]]
1477
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 125], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 23 Dec 2011 19:08:43 UTC +00:00]]
1478
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1479
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]]
1480
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 126], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 22 Dec 2011 19:08:43 UTC +00:00]]
1481
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1482
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]]
1483
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 127], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 21 Dec 2011 19:08:43 UTC +00:00]]
1484
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1485
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]]
1486
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 128], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 20 Dec 2011 19:08:43 UTC +00:00]]
1487
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1488
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]]
1489
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 129], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 19 Dec 2011 19:08:43 UTC +00:00]]
1490
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1491
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]]
1492
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 130], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 18 Dec 2011 19:08:43 UTC +00:00]]
1493
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1494
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]]
1495
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 131], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 17 Dec 2011 19:08:43 UTC +00:00]]
1496
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1497
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]]
1498
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 132], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 16 Dec 2011 19:08:43 UTC +00:00]]
1499
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1500
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]]
1501
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 133], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 15 Dec 2011 19:08:43 UTC +00:00]]
1502
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1503
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0
1504
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1
1505
+  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count 
1506
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 5
1507
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 5 OFFSET 5
1508
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count
1509
+ SQL (11.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "Jeronimo"]]
1510
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 134 LIMIT 1
1511
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "Jeronimo"]]
1512
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 135 LIMIT 1
1513
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" 
1514
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 83 AND "taggings"."taggable_type" = 'Blogit::Post'
1515
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 83 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1516
+ SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 83]]
1517
+ ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 84 AND "taggings"."taggable_type" = 'Blogit::Post'
1518
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 84 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1519
+ SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 84]]
1520
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 85 AND "taggings"."taggable_type" = 'Blogit::Post'
1521
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 85 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1522
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 85]]
1523
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 86 AND "taggings"."taggable_type" = 'Blogit::Post'
1524
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 86 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1525
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 86]]
1526
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 87 AND "taggings"."taggable_type" = 'Blogit::Post'
1527
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 87 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1528
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 87]]
1529
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 88 AND "taggings"."taggable_type" = 'Blogit::Post'
1530
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 88 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1531
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 88]]
1532
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 89 AND "taggings"."taggable_type" = 'Blogit::Post'
1533
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 89 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1534
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 89]]
1535
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 90 AND "taggings"."taggable_type" = 'Blogit::Post'
1536
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 90 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1537
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 90]]
1538
+ ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 91 AND "taggings"."taggable_type" = 'Blogit::Post'
1539
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 91 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1540
+ SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 91]]
1541
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 92 AND "taggings"."taggable_type" = 'Blogit::Post'
1542
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 92 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1543
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 92]]
1544
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 93 AND "taggings"."taggable_type" = 'Blogit::Post'
1545
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 93 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1546
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 93]]
1547
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 94 AND "taggings"."taggable_type" = 'Blogit::Post'
1548
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 94 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1549
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 94]]
1550
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 95 AND "taggings"."taggable_type" = 'Blogit::Post'
1551
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 95 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1552
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 95]]
1553
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 96 AND "taggings"."taggable_type" = 'Blogit::Post'
1554
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 96 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1555
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 96]]
1556
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 97 AND "taggings"."taggable_type" = 'Blogit::Post'
1557
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 97 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1558
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 97]]
1559
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]]
1560
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 136], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]]
1561
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1562
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]]
1563
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 137], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 28 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]]
1564
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1565
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]]
1566
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 138], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 27 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]]
1567
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1568
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]]
1569
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 139], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]]
1570
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1571
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]]
1572
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 140], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sun, 25 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]]
1573
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1574
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]]
1575
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 141], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sat, 24 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]]
1576
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1577
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]]
1578
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 142], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 23 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]]
1579
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1580
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]]
1581
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 143], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 22 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]]
1582
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1583
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]]
1584
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 144], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 21 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]]
1585
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1586
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]]
1587
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 145], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 20 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]]
1588
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1589
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]]
1590
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 146], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 19 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]]
1591
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1592
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]]
1593
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 147], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sun, 18 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]]
1594
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1595
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]]
1596
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 148], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sat, 17 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]]
1597
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1598
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]]
1599
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 149], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 16 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]]
1600
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1601
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]]
1602
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 150], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 15 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]]
1603
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1604
+ Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0
1605
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1
1606
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count
1607
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 5
1608
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 5 OFFSET 5
1609
+  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count 
1610
+ SQL (11.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "Jeronimo"]]
1611
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 151 LIMIT 1
1612
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "Jeronimo"]]
1613
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 152 LIMIT 1
1614
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1615
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 98 AND "taggings"."taggable_type" = 'Blogit::Post'
1616
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 98 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1617
+ SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 98]]
1618
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 99 AND "taggings"."taggable_type" = 'Blogit::Post'
1619
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 99 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1620
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 99]]
1621
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 100 AND "taggings"."taggable_type" = 'Blogit::Post'
1622
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 100 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1623
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 100]]
1624
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 101 AND "taggings"."taggable_type" = 'Blogit::Post'
1625
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 101 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1626
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 101]]
1627
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 102 AND "taggings"."taggable_type" = 'Blogit::Post'
1628
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 102 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1629
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 102]]
1630
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 103 AND "taggings"."taggable_type" = 'Blogit::Post'
1631
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 103 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1632
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 103]]
1633
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 104 AND "taggings"."taggable_type" = 'Blogit::Post'
1634
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 104 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1635
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 104]]
1636
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 105 AND "taggings"."taggable_type" = 'Blogit::Post'
1637
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 105 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1638
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 105]]
1639
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 106 AND "taggings"."taggable_type" = 'Blogit::Post'
1640
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 106 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1641
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 106]]
1642
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 107 AND "taggings"."taggable_type" = 'Blogit::Post'
1643
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 107 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1644
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 107]]
1645
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 108 AND "taggings"."taggable_type" = 'Blogit::Post'
1646
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 108 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1647
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 108]]
1648
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 109 AND "taggings"."taggable_type" = 'Blogit::Post'
1649
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 109 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1650
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 109]]
1651
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 110 AND "taggings"."taggable_type" = 'Blogit::Post'
1652
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 110 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1653
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 110]]
1654
+ ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 111 AND "taggings"."taggable_type" = 'Blogit::Post'
1655
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 111 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1656
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 111]]
1657
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 112 AND "taggings"."taggable_type" = 'Blogit::Post'
1658
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 112 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1659
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 112]]
1660
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]]
1661
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 153], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]]
1662
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1663
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]]
1664
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 154], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 28 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]]
1665
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1666
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]]
1667
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 155], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 27 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]]
1668
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1669
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]]
1670
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 156], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]]
1671
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1672
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]]
1673
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 157], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sun, 25 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]]
1674
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1675
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]]
1676
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 158], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sat, 24 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]]
1677
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1678
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]]
1679
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 159], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 23 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]]
1680
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1681
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]]
1682
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 160], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 22 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]]
1683
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1684
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]]
1685
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 161], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 21 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]]
1686
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1687
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]]
1688
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 162], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 20 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]]
1689
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1690
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]]
1691
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 163], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 19 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]]
1692
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1693
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]]
1694
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 164], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sun, 18 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]]
1695
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1696
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]]
1697
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 165], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sat, 17 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]]
1698
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1699
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]]
1700
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 166], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 16 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]]
1701
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1702
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]]
1703
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 167], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 15 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]]
1704
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1705
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0
1706
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1
1707
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count
1708
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count 
1709
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
1710
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113
1711
+ Processing by Blogit::CommentsController#create as JS
1712
+ Parameters: {"post_id"=>"113", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
1713
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "113"]]
1714
+ SQL (11.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 19:10:11 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 113], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:10:11 UTC +00:00], ["website", "http://gavinmorrice.com"]]
1715
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1
1716
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113
1717
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.039817' WHERE "blog_posts"."id" = 113
1718
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1719
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.3ms)
1720
+ Completed 200 OK in 222ms (Views: 58.1ms | ActiveRecord: 12.2ms)
1721
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113
1722
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
1723
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113
1724
+ Processing by Blogit::CommentsController#create as HTML
1725
+ Parameters: {"post_id"=>"113", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
1726
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "113"]]
1727
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 113], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["website", "http://gavinmorrice.com"]]
1728
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1
1729
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113
1730
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.204900' WHERE "blog_posts"."id" = 113
1731
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1732
+ Redirected to http://test.host/blog/posts/113-tis-is-a-blog-post-title
1733
+ Completed 302 Found in 44ms
1734
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113
1735
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
1736
+ Processing by Blogit::CommentsController#create as HTML
1737
+ Parameters: {"post_id"=>"113", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
1738
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "113"]]
1739
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 113], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["website", "http://gavinmorrice.com"]]
1740
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1
1741
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113
1742
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.253034' WHERE "blog_posts"."id" = 113
1743
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1744
+ Redirected to http://test.host/blog/posts/113-tis-is-a-blog-post-title
1745
+ Completed 302 Found in 17ms
1746
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
1747
+ Processing by Blogit::CommentsController#create as HTML
1748
+ Parameters: {"post_id"=>"113", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
1749
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "113"]]
1750
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 113], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["website", "http://gavinmorrice.com"]]
1751
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1
1752
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113
1753
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.273803' WHERE "blog_posts"."id" = 113
1754
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1755
+ Redirected to http://test.host/blog/posts/113-tis-is-a-blog-post-title
1756
+ Completed 302 Found in 18ms
1757
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
1758
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 113], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["website", "http://gavinmorrice.com"]]
1759
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113
1760
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.292583' WHERE "blog_posts"."id" = 113
1761
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1762
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1763
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 113]]
1764
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113
1765
+ Processing by Blogit::CommentsController#destroy as JS
1766
+ Parameters: {"id"=>"41", "post_id"=>"113", "use_route"=>"blogit"}
1767
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "113"]]
1768
+ Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 113 AND "blog_comments"."id" = ? LIMIT 1 [["id", "41"]]
1769
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1
1770
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 113
1771
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 41]]
1772
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.305750' WHERE "blog_posts"."id" = 113
1773
+ Completed 200 OK in 10ms (Views: 1.4ms | ActiveRecord: 0.8ms)
1774
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 113]]
1775
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113
1776
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
1777
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 113], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["website", "http://gavinmorrice.com"]]
1778
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113
1779
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.318665' WHERE "blog_posts"."id" = 113
1780
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1781
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1782
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 113]]
1783
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113
1784
+ Processing by Blogit::CommentsController#destroy as HTML
1785
+ Parameters: {"id"=>"42", "post_id"=>"113", "use_route"=>"blogit"}
1786
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "113"]]
1787
+ Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 113 AND "blog_comments"."id" = ? LIMIT 1 [["id", "42"]]
1788
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1
1789
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 113
1790
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 42]]
1791
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.331955' WHERE "blog_posts"."id" = 113
1792
+ Redirected to http://test.host/blog/posts/113-tis-is-a-blog-post-title
1793
+ Completed 302 Found in 8ms
1794
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 113]]
1795
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113
1796
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
1797
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 113], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["website", "http://gavinmorrice.com"]]
1798
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113
1799
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.343178' WHERE "blog_posts"."id" = 113
1800
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1801
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1802
+ Processing by Blogit::CommentsController#destroy as HTML
1803
+ Parameters: {"id"=>"43", "post_id"=>"113", "use_route"=>"blogit"}
1804
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "113"]]
1805
+ Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 113 AND "blog_comments"."id" = ? LIMIT 1 [["id", "43"]]
1806
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1
1807
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 113
1808
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 43]]
1809
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.352639' WHERE "blog_posts"."id" = 113
1810
+ Redirected to http://test.host/blog/posts/113-tis-is-a-blog-post-title
1811
+ Completed 302 Found in 9ms
1812
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
1813
+ SQL (0.5ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 113], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["website", "http://gavinmorrice.com"]]
1814
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113
1815
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.364568' WHERE "blog_posts"."id" = 113
1816
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1817
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
1818
+ Processing by Blogit::CommentsController#destroy as HTML
1819
+ Parameters: {"id"=>"44", "post_id"=>"113", "use_route"=>"blogit"}
1820
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
1821
+ Redirected to http://test.host/blog/
1822
+ Completed 302 Found in 1ms
1823
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
1824
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
1825
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 113], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["website", "http://gavinmorrice.com"]]
1826
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113
1827
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.378653' WHERE "blog_posts"."id" = 113
1828
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1829
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
1830
+ Processing by Blogit::CommentsController#destroy as HTML
1831
+ Parameters: {"id"=>"45", "post_id"=>"113", "use_route"=>"blogit"}
1832
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
1833
+ Redirected to http://test.host/blog/
1834
+ Completed 302 Found in 1ms
1835
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
1836
+ Processing by Blogit::PostsController#index as HTML
1837
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
1838
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
1839
+ Processing by Blogit::PostsController#index as HTML
1840
+ Parameters: {"page"=>"2", "use_route"=>"blogit"}
1841
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1842
+ Processing by Blogit::PostsController#index as XML
1843
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
1844
+ Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.0ms)
1845
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1846
+ Processing by Blogit::PostsController#new as HTML
1847
+ Parameters: {"use_route"=>"blogit"}
1848
+ Completed 200 OK in 39ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1849
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1850
+ Processing by Blogit::PostsController#new as HTML
1851
+ Parameters: {"use_route"=>"blogit"}
1852
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1853
+ Processing by Blogit::PostsController#new as HTML
1854
+ Parameters: {"use_route"=>"blogit"}
1855
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
1856
+ Redirected to http://test.host/blog/
1857
+ Completed 302 Found in 1ms
1858
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1859
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]]
1860
+ Processing by Blogit::PostsController#create as HTML
1861
+ Parameters: {"post"=>{"title"=>"Tis is a blog post title", "body"=>"This is the body of the blog post - you'll see it's a lot bigger than the title"}, "use_route"=>"blogit"}
1862
+ Redirected to http://test.host/blog/posts
1863
+ Completed 302 Found in 1ms
1864
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1865
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]]
1866
+ Processing by Blogit::PostsController#edit as HTML
1867
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
1868
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1869
+ Processing by Blogit::PostsController#edit as HTML
1870
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
1871
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
1872
+ Redirected to http://test.host/blog/
1873
+ Completed 302 Found in 1ms
1874
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1875
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]]
1876
+ Processing by Blogit::PostsController#update as HTML
1877
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
1878
+ Redirected to http://test.host/blog/posts
1879
+ Completed 302 Found in 1ms
1880
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1881
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]]
1882
+ Processing by Blogit::PostsController#update as HTML
1883
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
1884
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 171], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00]]
1885
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1886
+ Redirected to http://test.host/blog/posts/128-something-new
1887
+ Completed 302 Found in 13ms
1888
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1889
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]]
1890
+ Processing by Blogit::PostsController#update as HTML
1891
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
1892
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 172], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00]]
1893
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1894
+ Redirected to http://test.host/blog/posts/129-something-new
1895
+ Completed 302 Found in 15ms
1896
+ Processing by Blogit::PostsController#update as HTML
1897
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
1898
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
1899
+ Redirected to http://test.host/blog/
1900
+ Completed 302 Found in 1ms
1901
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]]
1902
+ Processing by Blogit::PostsController#show as HTML
1903
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
1904
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1905
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1906
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]]
1907
+ Processing by Blogit::PostsController#destroy as HTML
1908
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
1909
+ Redirected to http://test.host/blog/posts
1910
+ Completed 302 Found in 1ms
1911
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1912
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]]
1913
+ Processing by Blogit::PostsController#destroy as HTML
1914
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
1915
+ Redirected to http://test.host/blog/posts
1916
+ Completed 302 Found in 10ms
1917
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
1918
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]]
1919
+ Processing by Blogit::PostsController#destroy as HTML
1920
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
1921
+ Redirected to http://test.host/blog/posts
1922
+ Completed 302 Found in 1ms
1923
+ Processing by Blogit::PostsController#destroy as HTML
1924
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
1925
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
1926
+ Redirected to http://test.host/blog/
1927
+ Completed 302 Found in 1ms
1928
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]]
1929
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 177], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00]]
1930
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1931
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]]
1932
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 178], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00]]
1933
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1934
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]]
1935
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 179], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00]]
1936
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1937
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]]
1938
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 180], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00]]
1939
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1940
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]]
1941
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 181], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00]]
1942
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1943
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]]
1944
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 182], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00]]
1945
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1946
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]]
1947
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 183], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00]]
1948
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1949
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "Jeronimo"]]
1950
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 184 LIMIT 1
1951
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "Jeronimo"]]
1952
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 185 LIMIT 1
1953
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1954
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 113 AND "taggings"."taggable_type" = 'Blogit::Post'
1955
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 113 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1956
+ SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 113]]
1957
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 114 AND "taggings"."taggable_type" = 'Blogit::Post'
1958
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 114 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1959
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 114]]
1960
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 115 AND "taggings"."taggable_type" = 'Blogit::Post'
1961
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 115 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1962
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 115]]
1963
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 116 AND "taggings"."taggable_type" = 'Blogit::Post'
1964
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 116 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1965
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 116]]
1966
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 117 AND "taggings"."taggable_type" = 'Blogit::Post'
1967
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 117 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1968
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 117]]
1969
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 118 AND "taggings"."taggable_type" = 'Blogit::Post'
1970
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 118 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1971
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 118]]
1972
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 119 AND "taggings"."taggable_type" = 'Blogit::Post'
1973
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 119 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1974
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 119]]
1975
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 120 AND "taggings"."taggable_type" = 'Blogit::Post'
1976
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 120 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1977
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 120]]
1978
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 121 AND "taggings"."taggable_type" = 'Blogit::Post'
1979
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 121 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1980
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 121]]
1981
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 122 AND "taggings"."taggable_type" = 'Blogit::Post'
1982
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 122 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1983
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 122]]
1984
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 123 AND "taggings"."taggable_type" = 'Blogit::Post'
1985
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 123 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1986
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 123]]
1987
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 124 AND "taggings"."taggable_type" = 'Blogit::Post'
1988
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 124 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1989
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 124]]
1990
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 125 AND "taggings"."taggable_type" = 'Blogit::Post'
1991
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 125 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1992
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 125]]
1993
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 126 AND "taggings"."taggable_type" = 'Blogit::Post'
1994
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 126 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1995
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 126]]
1996
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 127 AND "taggings"."taggable_type" = 'Blogit::Post'
1997
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 127 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1998
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 127]]
1999
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 128 AND "taggings"."taggable_type" = 'Blogit::Post'
2000
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 128 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2001
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 128]]
2002
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 129 AND "taggings"."taggable_type" = 'Blogit::Post'
2003
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 129 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2004
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 129]]
2005
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 130 AND "taggings"."taggable_type" = 'Blogit::Post'
2006
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 130 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2007
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 130]]
2008
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 131 AND "taggings"."taggable_type" = 'Blogit::Post'
2009
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 131 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2010
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 131]]
2011
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 132 AND "taggings"."taggable_type" = 'Blogit::Post'
2012
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 132 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2013
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 132]]
2014
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 133 AND "taggings"."taggable_type" = 'Blogit::Post'
2015
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 133 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2016
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 133]]
2017
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 134 AND "taggings"."taggable_type" = 'Blogit::Post'
2018
+ ActsAsTaggableOn::Tagging Load (0.0ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 134 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2019
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 134]]
2020
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 135 AND "taggings"."taggable_type" = 'Blogit::Post'
2021
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 135 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2022
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 135]]
2023
+ ActsAsTaggableOn::Tagging Load (0.3ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 136 AND "taggings"."taggable_type" = 'Blogit::Post'
2024
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 136 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2025
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 136]]
2026
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]]
2027
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 186], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]]
2028
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2029
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]]
2030
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 187], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 28 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]]
2031
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2032
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]]
2033
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 188], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 27 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]]
2034
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2035
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]]
2036
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 189], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]]
2037
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2038
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]]
2039
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 190], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sun, 25 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]]
2040
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2041
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]]
2042
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 191], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sat, 24 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]]
2043
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2044
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]]
2045
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 192], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 23 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]]
2046
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2047
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]]
2048
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 193], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 22 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]]
2049
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2050
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]]
2051
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 194], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 21 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]]
2052
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2053
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]]
2054
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 195], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 20 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]]
2055
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2056
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]]
2057
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 196], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 19 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]]
2058
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2059
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]]
2060
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 197], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sun, 18 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]]
2061
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2062
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]]
2063
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 198], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sat, 17 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]]
2064
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2065
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]]
2066
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 199], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 16 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]]
2067
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2068
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]]
2069
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 200], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 15 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]]
2070
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2071
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0
2072
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1
2073
+  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count 
2074
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count
2075
+ SQL (11.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:23 UTC +00:00], ["username", "Jeronimo"]]
2076
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 201 LIMIT 1
2077
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "Jeronimo"]]
2078
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 202 LIMIT 1
2079
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2080
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 137 AND "taggings"."taggable_type" = 'Blogit::Post'
2081
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 137 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2082
+ SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 137]]
2083
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 138 AND "taggings"."taggable_type" = 'Blogit::Post'
2084
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 138 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2085
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 138]]
2086
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 139 AND "taggings"."taggable_type" = 'Blogit::Post'
2087
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 139 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2088
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 139]]
2089
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 140 AND "taggings"."taggable_type" = 'Blogit::Post'
2090
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 140 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2091
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 140]]
2092
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 141 AND "taggings"."taggable_type" = 'Blogit::Post'
2093
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 141 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2094
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 141]]
2095
+ ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 142 AND "taggings"."taggable_type" = 'Blogit::Post'
2096
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 142 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2097
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 142]]
2098
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 143 AND "taggings"."taggable_type" = 'Blogit::Post'
2099
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 143 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2100
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 143]]
2101
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 144 AND "taggings"."taggable_type" = 'Blogit::Post'
2102
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 144 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2103
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 144]]
2104
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 145 AND "taggings"."taggable_type" = 'Blogit::Post'
2105
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 145 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2106
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 145]]
2107
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 146 AND "taggings"."taggable_type" = 'Blogit::Post'
2108
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 146 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2109
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 146]]
2110
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 147 AND "taggings"."taggable_type" = 'Blogit::Post'
2111
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 147 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2112
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 147]]
2113
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 148 AND "taggings"."taggable_type" = 'Blogit::Post'
2114
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 148 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2115
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 148]]
2116
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 149 AND "taggings"."taggable_type" = 'Blogit::Post'
2117
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 149 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2118
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 149]]
2119
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 150 AND "taggings"."taggable_type" = 'Blogit::Post'
2120
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 150 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2121
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 150]]
2122
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 151 AND "taggings"."taggable_type" = 'Blogit::Post'
2123
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 151 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2124
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 151]]
2125
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]]
2126
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 203], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00]]
2127
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2128
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]]
2129
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 204], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 28 Dec 2011 19:10:24 UTC +00:00]]
2130
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2131
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]]
2132
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 205], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 27 Dec 2011 19:10:24 UTC +00:00]]
2133
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2134
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]]
2135
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 206], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 19:10:24 UTC +00:00]]
2136
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2137
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]]
2138
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 207], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 25 Dec 2011 19:10:24 UTC +00:00]]
2139
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2140
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]]
2141
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 208], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 24 Dec 2011 19:10:24 UTC +00:00]]
2142
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2143
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]]
2144
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 209], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 23 Dec 2011 19:10:24 UTC +00:00]]
2145
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2146
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]]
2147
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 210], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 22 Dec 2011 19:10:24 UTC +00:00]]
2148
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2149
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]]
2150
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 211], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 21 Dec 2011 19:10:24 UTC +00:00]]
2151
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2152
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]]
2153
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 212], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 20 Dec 2011 19:10:24 UTC +00:00]]
2154
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2155
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]]
2156
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 213], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 19 Dec 2011 19:10:24 UTC +00:00]]
2157
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2158
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]]
2159
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 214], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 18 Dec 2011 19:10:24 UTC +00:00]]
2160
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2161
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]]
2162
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 215], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 17 Dec 2011 19:10:24 UTC +00:00]]
2163
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2164
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]]
2165
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 216], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 16 Dec 2011 19:10:24 UTC +00:00]]
2166
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2167
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]]
2168
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 217], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 15 Dec 2011 19:10:24 UTC +00:00]]
2169
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2170
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0
2171
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1
2172
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count
2173
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count 
2174
+ SQL (11.1ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "Jeronimo"]]
2175
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 218 LIMIT 1
2176
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "Jeronimo"]]
2177
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 219 LIMIT 1
2178
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2179
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 152 AND "taggings"."taggable_type" = 'Blogit::Post'
2180
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 152 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2181
+ SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 152]]
2182
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 153 AND "taggings"."taggable_type" = 'Blogit::Post'
2183
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 153 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2184
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 153]]
2185
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 154 AND "taggings"."taggable_type" = 'Blogit::Post'
2186
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 154 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2187
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 154]]
2188
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 155 AND "taggings"."taggable_type" = 'Blogit::Post'
2189
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 155 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2190
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 155]]
2191
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 156 AND "taggings"."taggable_type" = 'Blogit::Post'
2192
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 156 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2193
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 156]]
2194
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 157 AND "taggings"."taggable_type" = 'Blogit::Post'
2195
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 157 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2196
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 157]]
2197
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 158 AND "taggings"."taggable_type" = 'Blogit::Post'
2198
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 158 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2199
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 158]]
2200
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 159 AND "taggings"."taggable_type" = 'Blogit::Post'
2201
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 159 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2202
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 159]]
2203
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 160 AND "taggings"."taggable_type" = 'Blogit::Post'
2204
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 160 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2205
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 160]]
2206
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 161 AND "taggings"."taggable_type" = 'Blogit::Post'
2207
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 161 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2208
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 161]]
2209
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 162 AND "taggings"."taggable_type" = 'Blogit::Post'
2210
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 162 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2211
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 162]]
2212
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 163 AND "taggings"."taggable_type" = 'Blogit::Post'
2213
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 163 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2214
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 163]]
2215
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 164 AND "taggings"."taggable_type" = 'Blogit::Post'
2216
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 164 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2217
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 164]]
2218
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 165 AND "taggings"."taggable_type" = 'Blogit::Post'
2219
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 165 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2220
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 165]]
2221
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 166 AND "taggings"."taggable_type" = 'Blogit::Post'
2222
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 166 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
2223
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 166]]
2224
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]]
2225
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 220], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]]
2226
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2227
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]]
2228
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 221], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 28 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]]
2229
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2230
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]]
2231
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 222], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 27 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]]
2232
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2233
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]]
2234
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 223], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]]
2235
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2236
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]]
2237
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 224], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sun, 25 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]]
2238
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2239
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]]
2240
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 225], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sat, 24 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]]
2241
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2242
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]]
2243
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 226], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 23 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]]
2244
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2245
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]]
2246
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 227], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 22 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]]
2247
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2248
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]]
2249
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 228], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 21 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]]
2250
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2251
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]]
2252
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 229], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 20 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]]
2253
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2254
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]]
2255
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 230], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 19 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]]
2256
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2257
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]]
2258
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 231], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sun, 18 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]]
2259
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2260
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]]
2261
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 232], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sat, 17 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]]
2262
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2263
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]]
2264
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 233], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 16 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]]
2265
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
2266
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]]
2267
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 234], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 15 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]]
2268
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
2269
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0
2270
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1
2271
+  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count
2272
+  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count