blogit 0.4.2 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -1
- data/app/models/blogit/post.rb +1 -1
- data/lib/blogit/version.rb +1 -1
- data/lib/generators/templates/blogit.rb +9 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +1132 -0
- data/spec/models/blogit/post_spec.rb +4 -4
- metadata +33 -33
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.
|
103
|
+
katana:code are [Ruby on Rails Developers Based in Edinburgh, Scotland](http://katanacode.com/ "katana:code").
|
data/app/models/blogit/post.rb
CHANGED
@@ -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("
|
37
|
+
scope :for_index, lambda { |page_no = 1| order("created_at DESC").page(page_no) }
|
38
38
|
|
39
39
|
# ====================
|
40
40
|
# = Instance Methods =
|
data/lib/blogit/version.rb
CHANGED
@@ -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 = {
|
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|
data/spec/dummy/log/test.log
CHANGED
@@ -1138,3 +1138,1135 @@ Completed 302 Found in 1ms
|
|
1138
1138
|
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1
|
1139
1139
|
[1m[36m (0.1ms)[0m [1mSELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count [0m
|
1140
1140
|
[1m[35m (0.1ms)[0m SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count
|
1141
|
+
[1m[36mBlogit::Post Load (23.0ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1142
|
+
[1m[35m (1.7ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "59"]]
|
1146
|
+
[1m[35mSQL (13.8ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1[0m
|
1148
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59
|
1149
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.418403' WHERE "blog_posts"."id" = 59[0m
|
1150
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59[0m
|
1154
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
1155
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59[0m
|
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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "59"]]
|
1159
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1
|
1161
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59[0m
|
1162
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.593591' WHERE "blog_posts"."id" = 59
|
1163
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1164
|
+
Redirected to http://test.host/blog/posts/59-tis-is-a-blog-post-title
|
1165
|
+
Completed 302 Found in 46ms
|
1166
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59
|
1167
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "59"]]
|
1171
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1
|
1173
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59[0m
|
1174
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.643181' WHERE "blog_posts"."id" = 59
|
1175
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1176
|
+
Redirected to http://test.host/blog/posts/59-tis-is-a-blog-post-title
|
1177
|
+
Completed 302 Found in 15ms
|
1178
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "59"]]
|
1182
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1[0m
|
1184
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59
|
1185
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.661246' WHERE "blog_posts"."id" = 59[0m
|
1186
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1190
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59[0m
|
1192
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.677346' WHERE "blog_posts"."id" = 59
|
1193
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1194
|
+
[1m[35mUser Load (16.5ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1195
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 59]]
|
1196
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "59"]]
|
1200
|
+
[1m[35mBlogit::Comment Load (0.1ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 AND "blog_comments"."id" = ? LIMIT 1 [["id", "32"]]
|
1201
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1[0m
|
1202
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 59
|
1203
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 32]]
|
1204
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 59]]
|
1207
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59
|
1208
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1209
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59[0m
|
1211
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.715846' WHERE "blog_posts"."id" = 59
|
1212
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1213
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1214
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 59]]
|
1215
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "59"]]
|
1219
|
+
[1m[35mBlogit::Comment Load (0.0ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 AND "blog_comments"."id" = ? LIMIT 1 [["id", "33"]]
|
1220
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1[0m
|
1221
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 59
|
1222
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 33]]
|
1223
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 59]]
|
1227
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59
|
1228
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1229
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59[0m
|
1231
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.736196' WHERE "blog_posts"."id" = 59
|
1232
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1233
|
+
[1m[35mUser Load (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "59"]]
|
1237
|
+
[1m[35mBlogit::Comment Load (0.1ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 AND "blog_comments"."id" = ? LIMIT 1 [["id", "34"]]
|
1238
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1[0m
|
1239
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 59
|
1240
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 34]]
|
1241
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1245
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59[0m
|
1247
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.754929' WHERE "blog_posts"."id" = 59
|
1248
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1249
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments"
|
1250
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
1251
|
+
Parameters: {"id"=>"35", "post_id"=>"59", "use_route"=>"blogit"}
|
1252
|
+
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
1253
|
+
Redirected to http://test.host/blog/
|
1254
|
+
Completed 302 Found in 1ms
|
1255
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments"
|
1256
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1257
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59[0m
|
1259
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.768140' WHERE "blog_posts"."id" = 59
|
1260
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1261
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments"
|
1262
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
1263
|
+
Parameters: {"id"=>"36", "post_id"=>"59", "use_route"=>"blogit"}
|
1264
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
1265
|
+
Redirected to http://test.host/blog/
|
1266
|
+
Completed 302 Found in 1ms
|
1267
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
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
|
+
[1m[35mUser Load (0.1ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
1288
|
+
Redirected to http://test.host/blog/
|
1289
|
+
Completed 302 Found in 1ms
|
1290
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1291
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1297
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1307
|
+
[1m[35mSQL (14.7ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1313
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (11.7ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1318
|
+
Redirected to http://test.host/blog/posts/74-something-new
|
1319
|
+
Completed 302 Found in 33ms
|
1320
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1321
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
1331
|
+
Redirected to http://test.host/blog/
|
1332
|
+
Completed 302 Found in 1ms
|
1333
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1338
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1344
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1350
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
1358
|
+
Redirected to http://test.host/blog/
|
1359
|
+
Completed 302 Found in 1ms
|
1360
|
+
[1m[35mSQL (174.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1363
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1366
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1369
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1372
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1375
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1378
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1381
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 117 LIMIT 1
|
1383
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 118 LIMIT 1
|
1385
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1386
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 59 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1387
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 59 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1388
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 59]]
|
1389
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 60 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1390
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 60 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1391
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 60]]
|
1392
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 61 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1393
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 61 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1394
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 61]]
|
1395
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 62 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1396
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 62 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1397
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 62]]
|
1398
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 63 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1399
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 63 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1400
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 63]]
|
1401
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 64 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1402
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 64 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1403
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 64]]
|
1404
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 65 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1405
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 65 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1406
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 65]]
|
1407
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 66 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1408
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 66 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1409
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 66]]
|
1410
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 67 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1411
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 67 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1412
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 67]]
|
1413
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 68 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1414
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 68 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1415
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 68]]
|
1416
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.2ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 69 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1417
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 69 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1418
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 69]]
|
1419
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 70 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1420
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 70 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1421
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 70]]
|
1422
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 71 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1423
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 71 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1424
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 71]]
|
1425
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 72 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1426
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 72 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1427
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 72]]
|
1428
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 73 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1429
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 73 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1430
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 73]]
|
1431
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 74 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1432
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 74 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1433
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 74]]
|
1434
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 75 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1435
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 75 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1436
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 75]]
|
1437
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 76 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1438
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 76 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1439
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 76]]
|
1440
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 77 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1441
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 77 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1442
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 77]]
|
1443
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 78 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1444
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 78 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1445
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 78]]
|
1446
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 79 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1447
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 79 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1448
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 79]]
|
1449
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 80 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1450
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 80 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1451
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 80]]
|
1452
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 81 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1453
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 81 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1454
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 81]]
|
1455
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 82 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1456
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 82 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1457
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 82]]
|
1458
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1461
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1464
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1467
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1470
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1473
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1476
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1479
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1482
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1485
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1488
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1491
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1494
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1497
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1500
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1503
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0[0m
|
1504
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1
|
1505
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count [0m
|
1506
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 5
|
1507
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 5 OFFSET 5[0m
|
1508
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count
|
1509
|
+
[1m[36mSQL (11.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 134 LIMIT 1
|
1511
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 135 LIMIT 1
|
1513
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1514
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 83 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1515
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 83 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1516
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 83]]
|
1517
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.2ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 84 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1518
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 84 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1519
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 84]]
|
1520
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 85 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1521
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 85 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1522
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 85]]
|
1523
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 86 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1524
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 86 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1525
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 86]]
|
1526
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 87 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1527
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 87 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1528
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 87]]
|
1529
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 88 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1530
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 88 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1531
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 88]]
|
1532
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 89 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1533
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 89 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1534
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 89]]
|
1535
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 90 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1536
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 90 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1537
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 90]]
|
1538
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.2ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 91 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1539
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 91 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1540
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 91]]
|
1541
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 92 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1542
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 92 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1543
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 92]]
|
1544
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 93 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1545
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 93 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1546
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 93]]
|
1547
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 94 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1548
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 94 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1549
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 94]]
|
1550
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 95 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1551
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 95 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1552
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 95]]
|
1553
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 96 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1554
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 96 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1555
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 96]]
|
1556
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 97 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1557
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 97 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1558
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 97]]
|
1559
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1562
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1565
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1568
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1571
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1574
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1577
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1580
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1583
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1586
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1589
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1592
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1595
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1598
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1601
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1604
|
+
[1m[35mBlogit::Post Load (0.3ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0
|
1605
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1[0m
|
1606
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count
|
1607
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 5[0m
|
1608
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 5 OFFSET 5
|
1609
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count [0m
|
1610
|
+
[1m[36mSQL (11.2ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 151 LIMIT 1
|
1612
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 152 LIMIT 1
|
1614
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1615
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 98 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1616
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 98 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1617
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 98]]
|
1618
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 99 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1619
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 99 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1620
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 99]]
|
1621
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 100 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1622
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 100 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1623
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 100]]
|
1624
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 101 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1625
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 101 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1626
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 101]]
|
1627
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 102 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1628
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 102 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1629
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 102]]
|
1630
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 103 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1631
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 103 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1632
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 103]]
|
1633
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 104 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1634
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 104 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1635
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 104]]
|
1636
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 105 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1637
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 105 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1638
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 105]]
|
1639
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 106 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1640
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 106 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1641
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 106]]
|
1642
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 107 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1643
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 107 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1644
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 107]]
|
1645
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 108 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1646
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 108 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1647
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 108]]
|
1648
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 109 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1649
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 109 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1650
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 109]]
|
1651
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 110 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1652
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 110 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1653
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 110]]
|
1654
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.2ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 111 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1655
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 111 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1656
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 111]]
|
1657
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 112 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1658
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 112 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1659
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 112]]
|
1660
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1663
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1666
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1669
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1672
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1675
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1678
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1681
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1684
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1687
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1690
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1693
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1696
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1699
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1702
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1705
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0
|
1706
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1[0m
|
1707
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count
|
1708
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count [0m
|
1709
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1710
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "113"]]
|
1714
|
+
[1m[35mSQL (11.4ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1[0m
|
1716
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113
|
1717
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.039817' WHERE "blog_posts"."id" = 113[0m
|
1718
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113[0m
|
1722
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
1723
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113[0m
|
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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "113"]]
|
1727
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1
|
1729
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113[0m
|
1730
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.204900' WHERE "blog_posts"."id" = 113
|
1731
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1732
|
+
Redirected to http://test.host/blog/posts/113-tis-is-a-blog-post-title
|
1733
|
+
Completed 302 Found in 44ms
|
1734
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113
|
1735
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "113"]]
|
1739
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1
|
1741
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113[0m
|
1742
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.253034' WHERE "blog_posts"."id" = 113
|
1743
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1744
|
+
Redirected to http://test.host/blog/posts/113-tis-is-a-blog-post-title
|
1745
|
+
Completed 302 Found in 17ms
|
1746
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "113"]]
|
1750
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1[0m
|
1752
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113
|
1753
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.273803' WHERE "blog_posts"."id" = 113[0m
|
1754
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1758
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113[0m
|
1760
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.292583' WHERE "blog_posts"."id" = 113
|
1761
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1762
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1763
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 113]]
|
1764
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "113"]]
|
1768
|
+
[1m[35mBlogit::Comment Load (0.1ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 113 AND "blog_comments"."id" = ? LIMIT 1 [["id", "41"]]
|
1769
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1[0m
|
1770
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 113
|
1771
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 41]]
|
1772
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 113]]
|
1775
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113
|
1776
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1777
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113[0m
|
1779
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.318665' WHERE "blog_posts"."id" = 113
|
1780
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1781
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1782
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 113]]
|
1783
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "113"]]
|
1787
|
+
[1m[35mBlogit::Comment Load (0.0ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 113 AND "blog_comments"."id" = ? LIMIT 1 [["id", "42"]]
|
1788
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1[0m
|
1789
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 113
|
1790
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 42]]
|
1791
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 113]]
|
1795
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113
|
1796
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1797
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113[0m
|
1799
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.343178' WHERE "blog_posts"."id" = 113
|
1800
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1801
|
+
[1m[35mUser Load (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "113"]]
|
1805
|
+
[1m[35mBlogit::Comment Load (0.0ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 113 AND "blog_comments"."id" = ? LIMIT 1 [["id", "43"]]
|
1806
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1[0m
|
1807
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 113
|
1808
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 43]]
|
1809
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1813
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113[0m
|
1815
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.364568' WHERE "blog_posts"."id" = 113
|
1816
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1817
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments"
|
1818
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
1819
|
+
Parameters: {"id"=>"44", "post_id"=>"113", "use_route"=>"blogit"}
|
1820
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
1821
|
+
Redirected to http://test.host/blog/
|
1822
|
+
Completed 302 Found in 1ms
|
1823
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments"
|
1824
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1825
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113[0m
|
1827
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.378653' WHERE "blog_posts"."id" = 113
|
1828
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1829
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments"
|
1830
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
1831
|
+
Parameters: {"id"=>"45", "post_id"=>"113", "use_route"=>"blogit"}
|
1832
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
1833
|
+
Redirected to http://test.host/blog/
|
1834
|
+
Completed 302 Found in 1ms
|
1835
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
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
|
+
[1m[35mUser Load (0.1ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
1856
|
+
Redirected to http://test.host/blog/
|
1857
|
+
Completed 302 Found in 1ms
|
1858
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1859
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1865
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1875
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1881
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1886
|
+
Redirected to http://test.host/blog/posts/128-something-new
|
1887
|
+
Completed 302 Found in 13ms
|
1888
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1889
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
1899
|
+
Redirected to http://test.host/blog/
|
1900
|
+
Completed 302 Found in 1ms
|
1901
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1906
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1912
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1918
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
1926
|
+
Redirected to http://test.host/blog/
|
1927
|
+
Completed 302 Found in 1ms
|
1928
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1931
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1934
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1937
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1940
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1943
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1946
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1949
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 184 LIMIT 1
|
1951
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 185 LIMIT 1
|
1953
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1954
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 113 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1955
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 113 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1956
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 113]]
|
1957
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 114 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1958
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 114 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1959
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 114]]
|
1960
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 115 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1961
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 115 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1962
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 115]]
|
1963
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 116 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1964
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 116 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1965
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 116]]
|
1966
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 117 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1967
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 117 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1968
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 117]]
|
1969
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 118 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1970
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 118 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1971
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 118]]
|
1972
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 119 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1973
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 119 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1974
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 119]]
|
1975
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 120 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1976
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 120 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1977
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 120]]
|
1978
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 121 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1979
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 121 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1980
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 121]]
|
1981
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 122 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1982
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 122 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1983
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 122]]
|
1984
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 123 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1985
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 123 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1986
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 123]]
|
1987
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 124 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1988
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 124 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1989
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 124]]
|
1990
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 125 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1991
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 125 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1992
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 125]]
|
1993
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 126 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1994
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 126 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1995
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 126]]
|
1996
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 127 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1997
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 127 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1998
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 127]]
|
1999
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 128 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2000
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 128 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
2001
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 128]]
|
2002
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 129 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2003
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 129 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2004
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 129]]
|
2005
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 130 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2006
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 130 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
2007
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 130]]
|
2008
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 131 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2009
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 131 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2010
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 131]]
|
2011
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 132 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2012
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 132 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
2013
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 132]]
|
2014
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 133 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2015
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 133 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2016
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 133]]
|
2017
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 134 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2018
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.0ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 134 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
2019
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 134]]
|
2020
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 135 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2021
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 135 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2022
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 135]]
|
2023
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.3ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 136 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2024
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 136 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
2025
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 136]]
|
2026
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2029
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2032
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2035
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2038
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2041
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2044
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2047
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2050
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2053
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2056
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2059
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2062
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2065
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2068
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2071
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0[0m
|
2072
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1
|
2073
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count [0m
|
2074
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count
|
2075
|
+
[1m[36mSQL (11.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 201 LIMIT 1
|
2077
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 202 LIMIT 1
|
2079
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2080
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 137 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2081
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 137 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2082
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 137]]
|
2083
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 138 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2084
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 138 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
2085
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 138]]
|
2086
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 139 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2087
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 139 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2088
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 139]]
|
2089
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 140 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2090
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 140 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
2091
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 140]]
|
2092
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 141 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2093
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 141 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2094
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 141]]
|
2095
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.2ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 142 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2096
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 142 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
2097
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 142]]
|
2098
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 143 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2099
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 143 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2100
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 143]]
|
2101
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 144 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2102
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 144 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
2103
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 144]]
|
2104
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 145 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2105
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 145 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2106
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 145]]
|
2107
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 146 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2108
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 146 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
2109
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 146]]
|
2110
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 147 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2111
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 147 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2112
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 147]]
|
2113
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 148 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2114
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 148 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
2115
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 148]]
|
2116
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 149 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2117
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 149 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2118
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 149]]
|
2119
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 150 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2120
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 150 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
2121
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 150]]
|
2122
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 151 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2123
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 151 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2124
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 151]]
|
2125
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2128
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2131
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2134
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2137
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2140
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2143
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2146
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2149
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2152
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2155
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2158
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2161
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2164
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2167
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2170
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0
|
2171
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1[0m
|
2172
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count
|
2173
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count [0m
|
2174
|
+
[1m[36mSQL (11.1ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 218 LIMIT 1
|
2176
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 219 LIMIT 1
|
2178
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2179
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 152 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2180
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 152 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2181
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 152]]
|
2182
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 153 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2183
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 153 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
2184
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 153]]
|
2185
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 154 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2186
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 154 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2187
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 154]]
|
2188
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 155 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2189
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 155 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
2190
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 155]]
|
2191
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 156 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2192
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 156 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2193
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 156]]
|
2194
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 157 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2195
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 157 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
2196
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 157]]
|
2197
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 158 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2198
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 158 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2199
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 158]]
|
2200
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 159 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2201
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 159 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
2202
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 159]]
|
2203
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 160 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2204
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 160 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2205
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 160]]
|
2206
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 161 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2207
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 161 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
2208
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 161]]
|
2209
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 162 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2210
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 162 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2211
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 162]]
|
2212
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 163 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2213
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 163 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
2214
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 163]]
|
2215
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 164 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2216
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 164 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2217
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 164]]
|
2218
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 165 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2219
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 165 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
2220
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 165]]
|
2221
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 166 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2222
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 166 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
2223
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 166]]
|
2224
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2227
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2230
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2233
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2236
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2239
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2242
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2245
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2248
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2251
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2254
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2257
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2260
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2263
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
2266
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2269
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0
|
2270
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1[0m
|
2271
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count
|
2272
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count [0m
|