blogit 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/blogit/version.rb +1 -1
- data/lib/generators/templates/blogit.rb +4 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +636 -0
- data/spec/lib/parsers/markdown_parser_spec.rb +8 -6
- metadata +17 -17
data/lib/blogit/version.rb
CHANGED
|
@@ -34,6 +34,10 @@ Blogit.configure do |config|
|
|
|
34
34
|
# The default format for parsing the blog content.
|
|
35
35
|
config.default_parser = :markdown
|
|
36
36
|
|
|
37
|
+
# If blog content contains code, this should be highlighted using
|
|
38
|
+
# albino.
|
|
39
|
+
config.highlight_code_syntax = true
|
|
40
|
+
|
|
37
41
|
# When using redcarpet as content parser, pass these options as defaults.
|
|
38
42
|
# @see here for more options: https://github.com/tanoku/redcarpet
|
|
39
43
|
config.redcarpet_options = [:hard_wrap, :filter_html, :autolink,
|
data/spec/dummy/db/test.sqlite3
CHANGED
|
Binary file
|
data/spec/dummy/log/test.log
CHANGED
|
@@ -33323,3 +33323,639 @@ Completed 302 Found in 1ms
|
|
|
33323
33323
|
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1[0m
|
|
33324
33324
|
[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
|
|
33325
33325
|
[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
|
|
33326
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
|
33327
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1120
|
|
33328
|
+
Processing by Blogit::CommentsController#create as JS
|
|
33329
|
+
Parameters: {"post_id"=>"1120", "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"}
|
|
33330
|
+
[1m[36mBlogit::Post Load (0.3ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "1120"]]
|
|
33331
|
+
[1m[35mSQL (14.1ms)[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", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1120], ["state", nil], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
|
33332
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1120 LIMIT 1[0m
|
|
33333
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1120
|
|
33334
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.4ms)
|
|
33335
|
+
Completed 200 OK in 159ms (Views: 59.0ms | ActiveRecord: 14.9ms)
|
|
33336
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1120[0m
|
|
33337
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
|
33338
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1120[0m
|
|
33339
|
+
Processing by Blogit::CommentsController#create as HTML
|
|
33340
|
+
Parameters: {"post_id"=>"1120", "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"}
|
|
33341
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1120"]]
|
|
33342
|
+
[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", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1120], ["state", nil], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
|
33343
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1120 LIMIT 1
|
|
33344
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1120[0m
|
|
33345
|
+
Redirected to http://test.host/blog/posts/1120-tis-is-a-blog-post-title
|
|
33346
|
+
Completed 302 Found in 94ms
|
|
33347
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1120
|
|
33348
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
|
33349
|
+
Processing by Blogit::CommentsController#create as HTML
|
|
33350
|
+
Parameters: {"post_id"=>"1120", "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"}
|
|
33351
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1120"]]
|
|
33352
|
+
[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", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1120], ["state", nil], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
|
33353
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1120 LIMIT 1
|
|
33354
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1120[0m
|
|
33355
|
+
Redirected to http://test.host/blog/posts/1120-tis-is-a-blog-post-title
|
|
33356
|
+
Completed 302 Found in 7ms
|
|
33357
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
|
33358
|
+
Processing by Blogit::CommentsController#create as HTML
|
|
33359
|
+
Parameters: {"post_id"=>"1120", "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"}
|
|
33360
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "1120"]]
|
|
33361
|
+
[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", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1120], ["state", nil], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
|
33362
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1120 LIMIT 1[0m
|
|
33363
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1120
|
|
33364
|
+
Redirected to http://test.host/blog/posts/1120-tis-is-a-blog-post-title
|
|
33365
|
+
Completed 302 Found in 10ms
|
|
33366
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
|
33367
|
+
[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", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1120], ["state", nil], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
|
33368
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1120[0m
|
|
33369
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
|
33370
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 1120]]
|
|
33371
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1120
|
|
33372
|
+
Processing by Blogit::CommentsController#destroy as JS
|
|
33373
|
+
Parameters: {"id"=>"460", "post_id"=>"1120", "use_route"=>"blogit"}
|
|
33374
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "1120"]]
|
|
33375
|
+
[1m[35mBlogit::Comment Load (0.2ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 1120 AND "blog_comments"."id" = ? LIMIT 1 [["id", "460"]]
|
|
33376
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1120 LIMIT 1[0m
|
|
33377
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 1120
|
|
33378
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 460]]
|
|
33379
|
+
Completed 200 OK in 12ms (Views: 1.9ms | ActiveRecord: 0.8ms)
|
|
33380
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 1120]]
|
|
33381
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1120[0m
|
|
33382
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
|
33383
|
+
[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", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1120], ["state", nil], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
|
33384
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1120
|
|
33385
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
|
33386
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 1120]]
|
|
33387
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1120[0m
|
|
33388
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
|
33389
|
+
Parameters: {"id"=>"461", "post_id"=>"1120", "use_route"=>"blogit"}
|
|
33390
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1120"]]
|
|
33391
|
+
[1m[36mBlogit::Comment Load (0.1ms)[0m [1mSELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 1120 AND "blog_comments"."id" = ? LIMIT 1[0m [["id", "461"]]
|
|
33392
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1120 LIMIT 1
|
|
33393
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 1120[0m
|
|
33394
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 461]]
|
|
33395
|
+
Redirected to http://test.host/blog/posts/1120-tis-is-a-blog-post-title
|
|
33396
|
+
Completed 302 Found in 10ms
|
|
33397
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 1120]]
|
|
33398
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1120
|
|
33399
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
|
33400
|
+
[1m[35mSQL (0.6ms)[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", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1120], ["state", nil], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
|
33401
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1120[0m
|
|
33402
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
|
33403
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
|
33404
|
+
Parameters: {"id"=>"462", "post_id"=>"1120", "use_route"=>"blogit"}
|
|
33405
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "1120"]]
|
|
33406
|
+
[1m[35mBlogit::Comment Load (0.1ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 1120 AND "blog_comments"."id" = ? LIMIT 1 [["id", "462"]]
|
|
33407
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1120 LIMIT 1[0m
|
|
33408
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 1120
|
|
33409
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 462]]
|
|
33410
|
+
Redirected to http://test.host/blog/posts/1120-tis-is-a-blog-post-title
|
|
33411
|
+
Completed 302 Found in 10ms
|
|
33412
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
|
33413
|
+
[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", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1120], ["state", nil], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
|
33414
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1120
|
|
33415
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
|
33416
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
|
33417
|
+
Parameters: {"id"=>"463", "post_id"=>"1120", "use_route"=>"blogit"}
|
|
33418
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
|
33419
|
+
Redirected to http://test.host/blog/
|
|
33420
|
+
Completed 302 Found in 1ms
|
|
33421
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
|
33422
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
|
33423
|
+
[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", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1120], ["state", nil], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
|
33424
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1120
|
|
33425
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
|
33426
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
|
33427
|
+
Parameters: {"id"=>"464", "post_id"=>"1120", "use_route"=>"blogit"}
|
|
33428
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
|
33429
|
+
Redirected to http://test.host/blog/
|
|
33430
|
+
Completed 302 Found in 1ms
|
|
33431
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
|
33432
|
+
Processing by Blogit::PostsController#index as HTML
|
|
33433
|
+
Parameters: {"page"=>"", "use_route"=>"blogit"}
|
|
33434
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
|
33435
|
+
Processing by Blogit::PostsController#index as HTML
|
|
33436
|
+
Parameters: {"page"=>"2", "use_route"=>"blogit"}
|
|
33437
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
|
33438
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
|
33439
|
+
Processing by Blogit::PostsController#new as HTML
|
|
33440
|
+
Parameters: {"use_route"=>"blogit"}
|
|
33441
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
|
33442
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
|
33443
|
+
Processing by Blogit::PostsController#new as HTML
|
|
33444
|
+
Parameters: {"use_route"=>"blogit"}
|
|
33445
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
|
33446
|
+
Processing by Blogit::PostsController#new as HTML
|
|
33447
|
+
Parameters: {"use_route"=>"blogit"}
|
|
33448
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
|
33449
|
+
Redirected to http://test.host/blog/
|
|
33450
|
+
Completed 302 Found in 1ms
|
|
33451
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
|
33452
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["username", "bodacious"]]
|
|
33453
|
+
Processing by Blogit::PostsController#create as HTML
|
|
33454
|
+
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"}
|
|
33455
|
+
Redirected to http://test.host/blog/posts
|
|
33456
|
+
Completed 302 Found in 1ms
|
|
33457
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
|
33458
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["username", "bodacious"]]
|
|
33459
|
+
Processing by Blogit::PostsController#edit as HTML
|
|
33460
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
|
33461
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
|
33462
|
+
Processing by Blogit::PostsController#edit as HTML
|
|
33463
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
|
33464
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
|
33465
|
+
Redirected to http://test.host/blog/
|
|
33466
|
+
Completed 302 Found in 1ms
|
|
33467
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
|
33468
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["username", "bodacious"]]
|
|
33469
|
+
Processing by Blogit::PostsController#update as HTML
|
|
33470
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
|
33471
|
+
Redirected to http://test.host/blog/posts
|
|
33472
|
+
Completed 302 Found in 1ms
|
|
33473
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
|
33474
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["username", "bodacious"]]
|
|
33475
|
+
Processing by Blogit::PostsController#update as HTML
|
|
33476
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
|
33477
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 1570], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["title", "Something new"], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00]]
|
|
33478
|
+
Redirected to http://test.host/blog/posts/1135-something-new
|
|
33479
|
+
Completed 302 Found in 7ms
|
|
33480
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
|
33481
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["username", "bodacious"]]
|
|
33482
|
+
Processing by Blogit::PostsController#update as HTML
|
|
33483
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
|
33484
|
+
[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", 1571], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["title", "Something new"], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00]]
|
|
33485
|
+
Redirected to http://test.host/blog/posts/1136-something-new
|
|
33486
|
+
Completed 302 Found in 6ms
|
|
33487
|
+
Processing by Blogit::PostsController#update as HTML
|
|
33488
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
|
33489
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
|
33490
|
+
Redirected to http://test.host/blog/
|
|
33491
|
+
Completed 302 Found in 1ms
|
|
33492
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["username", "bodacious"]]
|
|
33493
|
+
Processing by Blogit::PostsController#show as HTML
|
|
33494
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
|
33495
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
|
33496
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
|
33497
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["username", "bodacious"]]
|
|
33498
|
+
Processing by Blogit::PostsController#destroy as HTML
|
|
33499
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
|
33500
|
+
Redirected to http://test.host/blog/posts
|
|
33501
|
+
Completed 302 Found in 1ms
|
|
33502
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
|
33503
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["username", "bodacious"]]
|
|
33504
|
+
Processing by Blogit::PostsController#destroy as HTML
|
|
33505
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
|
33506
|
+
Redirected to http://test.host/blog/posts
|
|
33507
|
+
Completed 302 Found in 5ms
|
|
33508
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
|
33509
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["username", "bodacious"]]
|
|
33510
|
+
Processing by Blogit::PostsController#destroy as HTML
|
|
33511
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
|
33512
|
+
Redirected to http://test.host/blog/posts
|
|
33513
|
+
Completed 302 Found in 1ms
|
|
33514
|
+
Processing by Blogit::PostsController#destroy as HTML
|
|
33515
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
|
33516
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
|
33517
|
+
Redirected to http://test.host/blog/
|
|
33518
|
+
Completed 302 Found in 1ms
|
|
33519
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["username", "bodacious"]]
|
|
33520
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 1576], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00]]
|
|
33521
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:06 UTC +00:00], ["username", "bodacious"]]
|
|
33522
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 1577], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00]]
|
|
33523
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33524
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 1578], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00]]
|
|
33525
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33526
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 1579], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00]]
|
|
33527
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33528
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 1580], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00]]
|
|
33529
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33530
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 1581], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00]]
|
|
33531
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33532
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 1582], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00]]
|
|
33533
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "Jeronimo"]]
|
|
33534
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1583 LIMIT 1
|
|
33535
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "Jeronimo"]]
|
|
33536
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1584 LIMIT 1
|
|
33537
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
|
33538
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1120 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33539
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1120 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33540
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1120]]
|
|
33541
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1121 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33542
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1121 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33543
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1121]]
|
|
33544
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1122 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33545
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1122 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33546
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1122]]
|
|
33547
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1123 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33548
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1123 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33549
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1123]]
|
|
33550
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.2ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1124 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33551
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1124 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33552
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1124]]
|
|
33553
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.2ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1125 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33554
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1125 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33555
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1125]]
|
|
33556
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1126 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33557
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1126 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33558
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1126]]
|
|
33559
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.2ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1127 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33560
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1127 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33561
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1127]]
|
|
33562
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1128 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33563
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1128 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33564
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1128]]
|
|
33565
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1129 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33566
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1129 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33567
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1129]]
|
|
33568
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1130 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33569
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1130 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33570
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1130]]
|
|
33571
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1131 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33572
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1131 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33573
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1131]]
|
|
33574
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1132 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33575
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1132 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33576
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1132]]
|
|
33577
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1133 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33578
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1133 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33579
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1133]]
|
|
33580
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1134 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33581
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1134 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33582
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1134]]
|
|
33583
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1135 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33584
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1135 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33585
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1135]]
|
|
33586
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1136 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33587
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1136 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33588
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1136]]
|
|
33589
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1137 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33590
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1137 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33591
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1137]]
|
|
33592
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1138 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33593
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1138 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33594
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1138]]
|
|
33595
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.2ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1139 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33596
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1139 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33597
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1139]]
|
|
33598
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1140 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33599
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1140 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33600
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1140]]
|
|
33601
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1141 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33602
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1141 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33603
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1141]]
|
|
33604
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1142 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33605
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1142 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33606
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1142]]
|
|
33607
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1143 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33608
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1143 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33609
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1143]]
|
|
33610
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33611
|
+
[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", 1585], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00]]
|
|
33612
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33613
|
+
[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", 1586], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 13 Nov 2011 22:59:07 UTC +00:00]]
|
|
33614
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33615
|
+
[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", 1587], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 12 Nov 2011 22:59:07 UTC +00:00]]
|
|
33616
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33617
|
+
[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", 1588], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 11 Nov 2011 22:59:07 UTC +00:00]]
|
|
33618
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33619
|
+
[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", 1589], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 10 Nov 2011 22:59:07 UTC +00:00]]
|
|
33620
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33621
|
+
[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", 1590], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 09 Nov 2011 22:59:07 UTC +00:00]]
|
|
33622
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33623
|
+
[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", 1591], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 08 Nov 2011 22:59:07 UTC +00:00]]
|
|
33624
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33625
|
+
[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", 1592], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 07 Nov 2011 22:59:07 UTC +00:00]]
|
|
33626
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33627
|
+
[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", 1593], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 06 Nov 2011 22:59:07 UTC +00:00]]
|
|
33628
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33629
|
+
[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", 1594], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 05 Nov 2011 22:59:07 UTC +00:00]]
|
|
33630
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33631
|
+
[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", 1595], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 04 Nov 2011 22:59:07 UTC +00:00]]
|
|
33632
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33633
|
+
[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", 1596], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 03 Nov 2011 22:59:07 UTC +00:00]]
|
|
33634
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33635
|
+
[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", 1597], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 02 Nov 2011 22:59:07 UTC +00:00]]
|
|
33636
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33637
|
+
[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", 1598], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 01 Nov 2011 22:59:07 UTC +00:00]]
|
|
33638
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["username", "bodacious"]]
|
|
33639
|
+
[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", 1599], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 22:59:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 31 Oct 2011 22:59:07 UTC +00:00]]
|
|
33640
|
+
[1m[35mBlogit::Post Load (0.3ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0
|
|
33641
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1[0m
|
|
33642
|
+
[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
|
|
33643
|
+
[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
|
|
33644
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
|
33645
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1144
|
|
33646
|
+
Processing by Blogit::CommentsController#create as JS
|
|
33647
|
+
Parameters: {"post_id"=>"1144", "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"}
|
|
33648
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "1144"]]
|
|
33649
|
+
[1m[35mSQL (11.0ms)[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", Mon, 14 Nov 2011 23:02:49 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1144], ["state", nil], ["updated_at", Mon, 14 Nov 2011 23:02:49 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
|
33650
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1144 LIMIT 1[0m
|
|
33651
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1144
|
|
33652
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.4ms)
|
|
33653
|
+
Completed 200 OK in 176ms (Views: 58.7ms | ActiveRecord: 11.6ms)
|
|
33654
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1144[0m
|
|
33655
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
|
33656
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1144[0m
|
|
33657
|
+
Processing by Blogit::CommentsController#create as HTML
|
|
33658
|
+
Parameters: {"post_id"=>"1144", "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"}
|
|
33659
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1144"]]
|
|
33660
|
+
[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", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1144], ["state", nil], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
|
33661
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1144 LIMIT 1
|
|
33662
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1144[0m
|
|
33663
|
+
Redirected to http://test.host/blog/posts/1144-tis-is-a-blog-post-title
|
|
33664
|
+
Completed 302 Found in 96ms
|
|
33665
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1144
|
|
33666
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
|
33667
|
+
Processing by Blogit::CommentsController#create as HTML
|
|
33668
|
+
Parameters: {"post_id"=>"1144", "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"}
|
|
33669
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1144"]]
|
|
33670
|
+
[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", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1144], ["state", nil], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
|
33671
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1144 LIMIT 1
|
|
33672
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1144[0m
|
|
33673
|
+
Redirected to http://test.host/blog/posts/1144-tis-is-a-blog-post-title
|
|
33674
|
+
Completed 302 Found in 7ms
|
|
33675
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
|
33676
|
+
Processing by Blogit::CommentsController#create as HTML
|
|
33677
|
+
Parameters: {"post_id"=>"1144", "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"}
|
|
33678
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "1144"]]
|
|
33679
|
+
[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", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1144], ["state", nil], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
|
33680
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1144 LIMIT 1[0m
|
|
33681
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1144
|
|
33682
|
+
Redirected to http://test.host/blog/posts/1144-tis-is-a-blog-post-title
|
|
33683
|
+
Completed 302 Found in 10ms
|
|
33684
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
|
33685
|
+
[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", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1144], ["state", nil], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
|
33686
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1144[0m
|
|
33687
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
|
33688
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 1144]]
|
|
33689
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1144
|
|
33690
|
+
Processing by Blogit::CommentsController#destroy as JS
|
|
33691
|
+
Parameters: {"id"=>"469", "post_id"=>"1144", "use_route"=>"blogit"}
|
|
33692
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "1144"]]
|
|
33693
|
+
[1m[35mBlogit::Comment Load (0.1ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 1144 AND "blog_comments"."id" = ? LIMIT 1 [["id", "469"]]
|
|
33694
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1144 LIMIT 1[0m
|
|
33695
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 1144
|
|
33696
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 469]]
|
|
33697
|
+
Completed 200 OK in 8ms (Views: 1.6ms | ActiveRecord: 0.5ms)
|
|
33698
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 1144]]
|
|
33699
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1144[0m
|
|
33700
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
|
33701
|
+
[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", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1144], ["state", nil], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
|
33702
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1144
|
|
33703
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
|
33704
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 1144]]
|
|
33705
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1144[0m
|
|
33706
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
|
33707
|
+
Parameters: {"id"=>"470", "post_id"=>"1144", "use_route"=>"blogit"}
|
|
33708
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1144"]]
|
|
33709
|
+
[1m[36mBlogit::Comment Load (0.0ms)[0m [1mSELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 1144 AND "blog_comments"."id" = ? LIMIT 1[0m [["id", "470"]]
|
|
33710
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1144 LIMIT 1
|
|
33711
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 1144[0m
|
|
33712
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 470]]
|
|
33713
|
+
Redirected to http://test.host/blog/posts/1144-tis-is-a-blog-post-title
|
|
33714
|
+
Completed 302 Found in 8ms
|
|
33715
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 1144]]
|
|
33716
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1144
|
|
33717
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
|
33718
|
+
[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", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1144], ["state", nil], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
|
33719
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1144[0m
|
|
33720
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
|
33721
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
|
33722
|
+
Parameters: {"id"=>"471", "post_id"=>"1144", "use_route"=>"blogit"}
|
|
33723
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "1144"]]
|
|
33724
|
+
[1m[35mBlogit::Comment Load (0.1ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 1144 AND "blog_comments"."id" = ? LIMIT 1 [["id", "471"]]
|
|
33725
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1144 LIMIT 1[0m
|
|
33726
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 1144
|
|
33727
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 471]]
|
|
33728
|
+
Redirected to http://test.host/blog/posts/1144-tis-is-a-blog-post-title
|
|
33729
|
+
Completed 302 Found in 7ms
|
|
33730
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
|
33731
|
+
[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", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1144], ["state", nil], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
|
33732
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1144
|
|
33733
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
|
33734
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
|
33735
|
+
Parameters: {"id"=>"472", "post_id"=>"1144", "use_route"=>"blogit"}
|
|
33736
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
|
33737
|
+
Redirected to http://test.host/blog/
|
|
33738
|
+
Completed 302 Found in 1ms
|
|
33739
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
|
33740
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
|
33741
|
+
[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", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1144], ["state", nil], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
|
33742
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1144
|
|
33743
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
|
33744
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
|
33745
|
+
Parameters: {"id"=>"473", "post_id"=>"1144", "use_route"=>"blogit"}
|
|
33746
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
|
33747
|
+
Redirected to http://test.host/blog/
|
|
33748
|
+
Completed 302 Found in 1ms
|
|
33749
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
|
33750
|
+
Processing by Blogit::PostsController#index as HTML
|
|
33751
|
+
Parameters: {"page"=>"", "use_route"=>"blogit"}
|
|
33752
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
|
33753
|
+
Processing by Blogit::PostsController#index as HTML
|
|
33754
|
+
Parameters: {"page"=>"2", "use_route"=>"blogit"}
|
|
33755
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
|
33756
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
|
33757
|
+
Processing by Blogit::PostsController#new as HTML
|
|
33758
|
+
Parameters: {"use_route"=>"blogit"}
|
|
33759
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
|
33760
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
|
33761
|
+
Processing by Blogit::PostsController#new as HTML
|
|
33762
|
+
Parameters: {"use_route"=>"blogit"}
|
|
33763
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
|
33764
|
+
Processing by Blogit::PostsController#new as HTML
|
|
33765
|
+
Parameters: {"use_route"=>"blogit"}
|
|
33766
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
|
33767
|
+
Redirected to http://test.host/blog/
|
|
33768
|
+
Completed 302 Found in 1ms
|
|
33769
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
|
33770
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33771
|
+
Processing by Blogit::PostsController#create as HTML
|
|
33772
|
+
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"}
|
|
33773
|
+
Redirected to http://test.host/blog/posts
|
|
33774
|
+
Completed 302 Found in 1ms
|
|
33775
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
|
33776
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33777
|
+
Processing by Blogit::PostsController#edit as HTML
|
|
33778
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
|
33779
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
|
33780
|
+
Processing by Blogit::PostsController#edit as HTML
|
|
33781
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
|
33782
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
|
33783
|
+
Redirected to http://test.host/blog/
|
|
33784
|
+
Completed 302 Found in 1ms
|
|
33785
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
|
33786
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33787
|
+
Processing by Blogit::PostsController#update as HTML
|
|
33788
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
|
33789
|
+
Redirected to http://test.host/blog/posts
|
|
33790
|
+
Completed 302 Found in 1ms
|
|
33791
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
|
33792
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33793
|
+
Processing by Blogit::PostsController#update as HTML
|
|
33794
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
|
33795
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 1603], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["title", "Something new"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00]]
|
|
33796
|
+
Redirected to http://test.host/blog/posts/1159-something-new
|
|
33797
|
+
Completed 302 Found in 8ms
|
|
33798
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
|
33799
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33800
|
+
Processing by Blogit::PostsController#update as HTML
|
|
33801
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
|
33802
|
+
[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", 1604], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["title", "Something new"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00]]
|
|
33803
|
+
Redirected to http://test.host/blog/posts/1160-something-new
|
|
33804
|
+
Completed 302 Found in 7ms
|
|
33805
|
+
Processing by Blogit::PostsController#update as HTML
|
|
33806
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
|
33807
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
|
33808
|
+
Redirected to http://test.host/blog/
|
|
33809
|
+
Completed 302 Found in 2ms
|
|
33810
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33811
|
+
Processing by Blogit::PostsController#show as HTML
|
|
33812
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
|
33813
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
|
33814
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
|
33815
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33816
|
+
Processing by Blogit::PostsController#destroy as HTML
|
|
33817
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
|
33818
|
+
Redirected to http://test.host/blog/posts
|
|
33819
|
+
Completed 302 Found in 1ms
|
|
33820
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
|
33821
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33822
|
+
Processing by Blogit::PostsController#destroy as HTML
|
|
33823
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
|
33824
|
+
Redirected to http://test.host/blog/posts
|
|
33825
|
+
Completed 302 Found in 5ms
|
|
33826
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
|
33827
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33828
|
+
Processing by Blogit::PostsController#destroy as HTML
|
|
33829
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
|
33830
|
+
Redirected to http://test.host/blog/posts
|
|
33831
|
+
Completed 302 Found in 1ms
|
|
33832
|
+
Processing by Blogit::PostsController#destroy as HTML
|
|
33833
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
|
33834
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
|
33835
|
+
Redirected to http://test.host/blog/
|
|
33836
|
+
Completed 302 Found in 1ms
|
|
33837
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33838
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 1609], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00]]
|
|
33839
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33840
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 1610], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00]]
|
|
33841
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33842
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 1611], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00]]
|
|
33843
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33844
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 1612], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00]]
|
|
33845
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33846
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 1613], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00]]
|
|
33847
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33848
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 1614], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00]]
|
|
33849
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33850
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 1615], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00]]
|
|
33851
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "Jeronimo"]]
|
|
33852
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1616 LIMIT 1
|
|
33853
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "Jeronimo"]]
|
|
33854
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1617 LIMIT 1
|
|
33855
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
|
33856
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1144 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33857
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1144 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33858
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1144]]
|
|
33859
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1145 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33860
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1145 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33861
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1145]]
|
|
33862
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1146 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33863
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1146 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33864
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1146]]
|
|
33865
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1147 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33866
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1147 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33867
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1147]]
|
|
33868
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1148 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33869
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1148 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33870
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1148]]
|
|
33871
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1149 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33872
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1149 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33873
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1149]]
|
|
33874
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1150 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33875
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1150 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33876
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1150]]
|
|
33877
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1151 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33878
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1151 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33879
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1151]]
|
|
33880
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1152 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33881
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1152 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33882
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1152]]
|
|
33883
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1153 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33884
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1153 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33885
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1153]]
|
|
33886
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1154 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33887
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1154 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33888
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1154]]
|
|
33889
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1155 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33890
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1155 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33891
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1155]]
|
|
33892
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1156 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33893
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1156 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33894
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1156]]
|
|
33895
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1157 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33896
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1157 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33897
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1157]]
|
|
33898
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1158 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33899
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1158 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33900
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1158]]
|
|
33901
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1159 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33902
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1159 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33903
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1159]]
|
|
33904
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1160 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33905
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1160 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33906
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1160]]
|
|
33907
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1161 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33908
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1161 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33909
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1161]]
|
|
33910
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1162 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33911
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1162 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33912
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1162]]
|
|
33913
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1163 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33914
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1163 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33915
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1163]]
|
|
33916
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1164 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33917
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1164 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33918
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1164]]
|
|
33919
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1165 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33920
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1165 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33921
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1165]]
|
|
33922
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1166 AND "taggings"."taggable_type" = 'Blogit::Post'
|
|
33923
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1166 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
|
33924
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1166]]
|
|
33925
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1167 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
|
33926
|
+
[1m[35mSQL (0.1ms)[0m SELECT "taggings"."id" AS t0_r0, "taggings"."tag_id" AS t0_r1, "taggings"."taggable_id" AS t0_r2, "taggings"."taggable_type" AS t0_r3, "taggings"."tagger_id" AS t0_r4, "taggings"."tagger_type" AS t0_r5, "taggings"."context" AS t0_r6, "taggings"."created_at" AS t0_r7, "tags"."id" AS t1_r0, "tags"."name" AS t1_r1 FROM "taggings" LEFT OUTER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1167 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
|
33927
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1167]]
|
|
33928
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33929
|
+
[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", 1618], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00]]
|
|
33930
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33931
|
+
[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", 1619], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 13 Nov 2011 23:02:50 UTC +00:00]]
|
|
33932
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33933
|
+
[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", 1620], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 12 Nov 2011 23:02:50 UTC +00:00]]
|
|
33934
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33935
|
+
[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", 1621], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 11 Nov 2011 23:02:50 UTC +00:00]]
|
|
33936
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33937
|
+
[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", 1622], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 10 Nov 2011 23:02:50 UTC +00:00]]
|
|
33938
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33939
|
+
[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", 1623], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 09 Nov 2011 23:02:50 UTC +00:00]]
|
|
33940
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33941
|
+
[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", 1624], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 08 Nov 2011 23:02:50 UTC +00:00]]
|
|
33942
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:50 UTC +00:00], ["username", "bodacious"]]
|
|
33943
|
+
[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", 1625], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 07 Nov 2011 23:02:50 UTC +00:00]]
|
|
33944
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["username", "bodacious"]]
|
|
33945
|
+
[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", 1626], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 06 Nov 2011 23:02:51 UTC +00:00]]
|
|
33946
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["username", "bodacious"]]
|
|
33947
|
+
[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", 1627], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 05 Nov 2011 23:02:51 UTC +00:00]]
|
|
33948
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["username", "bodacious"]]
|
|
33949
|
+
[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", 1628], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 04 Nov 2011 23:02:51 UTC +00:00]]
|
|
33950
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["username", "bodacious"]]
|
|
33951
|
+
[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", 1629], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 03 Nov 2011 23:02:51 UTC +00:00]]
|
|
33952
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["username", "bodacious"]]
|
|
33953
|
+
[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", 1630], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 02 Nov 2011 23:02:51 UTC +00:00]]
|
|
33954
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["username", "bodacious"]]
|
|
33955
|
+
[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", 1631], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 01 Nov 2011 23:02:51 UTC +00:00]]
|
|
33956
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["password", "password"], ["updated_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["username", "bodacious"]]
|
|
33957
|
+
[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", 1632], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Nov 2011 23:02:51 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 31 Oct 2011 23:02:51 UTC +00:00]]
|
|
33958
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0
|
|
33959
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1[0m
|
|
33960
|
+
[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
|
|
33961
|
+
[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
|
|
@@ -3,26 +3,28 @@ require "spec_helper"
|
|
|
3
3
|
describe Blogit::Parsers::MarkdownParser do
|
|
4
4
|
|
|
5
5
|
let(:parser) { Blogit::Parsers::MarkdownParser.new("## Some textile\n\nA paragraph") }
|
|
6
|
-
let(:desired_output) { "<h2>Some textile</h2>\n\n<p>A paragraph</p>\n" }
|
|
6
|
+
let(:desired_output) { Regexp.new("<h2>Some textile</h2>\n\n<p>A paragraph</p>\n") }
|
|
7
7
|
|
|
8
8
|
it "should return an html string of content passed when calling parsed" do
|
|
9
|
-
parser.parsed.should
|
|
9
|
+
parser.parsed.should =~ desired_output
|
|
10
10
|
end
|
|
11
11
|
|
|
12
12
|
describe "code highlighting" do
|
|
13
13
|
|
|
14
|
-
let(:parser) {
|
|
14
|
+
let(:parser) {
|
|
15
|
+
Blogit::Parsers::MarkdownParser.new("## Header\n\n``` ruby\nputs 'hello world'\n```")
|
|
16
|
+
}
|
|
15
17
|
|
|
16
18
|
|
|
17
19
|
it "should highlight code if highlight_code_syntax is true" do
|
|
18
20
|
Blogit::configuration.highlight_code_syntax = true
|
|
19
|
-
parser.parsed.should
|
|
21
|
+
parser.parsed.should =~
|
|
22
|
+
Regexp.new("<h2>Header</h2>\n\n<div class=\"highlight\">\n<pre><span class=\"nb\">puts</span> <span class=\"s1\">'hello world'</span>\n</pre>\n</div>")
|
|
20
23
|
end
|
|
21
24
|
|
|
22
25
|
it "shoud not highlight code if highlight_code_syntax is false" do
|
|
23
26
|
Blogit.configuration.highlight_code_syntax = false
|
|
24
|
-
puts
|
|
25
|
-
parser.parsed.should == "<pre lang=\"ruby\"><code>puts 'hello world'\n</code></pre>\n"
|
|
27
|
+
parser.parsed.should == "<h2>Header</h2>\n\n<pre lang=\"ruby\"><code>puts 'hello world'\n</code></pre>\n"
|
|
26
28
|
end
|
|
27
29
|
|
|
28
30
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: blogit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.6
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -13,7 +13,7 @@ date: 2011-11-14 00:00:00.000000000Z
|
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rails
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &70268573006800 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ~>
|
|
@@ -21,10 +21,10 @@ dependencies:
|
|
|
21
21
|
version: 3.1.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *70268573006800
|
|
25
25
|
- !ruby/object:Gem::Dependency
|
|
26
26
|
name: jquery-rails
|
|
27
|
-
requirement: &
|
|
27
|
+
requirement: &70268573006380 !ruby/object:Gem::Requirement
|
|
28
28
|
none: false
|
|
29
29
|
requirements:
|
|
30
30
|
- - ! '>='
|
|
@@ -32,10 +32,10 @@ dependencies:
|
|
|
32
32
|
version: '0'
|
|
33
33
|
type: :runtime
|
|
34
34
|
prerelease: false
|
|
35
|
-
version_requirements: *
|
|
35
|
+
version_requirements: *70268573006380
|
|
36
36
|
- !ruby/object:Gem::Dependency
|
|
37
37
|
name: RedCloth
|
|
38
|
-
requirement: &
|
|
38
|
+
requirement: &70268573005860 !ruby/object:Gem::Requirement
|
|
39
39
|
none: false
|
|
40
40
|
requirements:
|
|
41
41
|
- - ! '>='
|
|
@@ -43,10 +43,10 @@ dependencies:
|
|
|
43
43
|
version: '0'
|
|
44
44
|
type: :runtime
|
|
45
45
|
prerelease: false
|
|
46
|
-
version_requirements: *
|
|
46
|
+
version_requirements: *70268573005860
|
|
47
47
|
- !ruby/object:Gem::Dependency
|
|
48
48
|
name: redcarpet
|
|
49
|
-
requirement: &
|
|
49
|
+
requirement: &70268573005380 !ruby/object:Gem::Requirement
|
|
50
50
|
none: false
|
|
51
51
|
requirements:
|
|
52
52
|
- - ! '>='
|
|
@@ -54,10 +54,10 @@ dependencies:
|
|
|
54
54
|
version: '0'
|
|
55
55
|
type: :runtime
|
|
56
56
|
prerelease: false
|
|
57
|
-
version_requirements: *
|
|
57
|
+
version_requirements: *70268573005380
|
|
58
58
|
- !ruby/object:Gem::Dependency
|
|
59
59
|
name: nokogiri
|
|
60
|
-
requirement: &
|
|
60
|
+
requirement: &70268573004960 !ruby/object:Gem::Requirement
|
|
61
61
|
none: false
|
|
62
62
|
requirements:
|
|
63
63
|
- - ! '>='
|
|
@@ -65,10 +65,10 @@ dependencies:
|
|
|
65
65
|
version: '0'
|
|
66
66
|
type: :runtime
|
|
67
67
|
prerelease: false
|
|
68
|
-
version_requirements: *
|
|
68
|
+
version_requirements: *70268573004960
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
70
|
name: albino
|
|
71
|
-
requirement: &
|
|
71
|
+
requirement: &70268573004460 !ruby/object:Gem::Requirement
|
|
72
72
|
none: false
|
|
73
73
|
requirements:
|
|
74
74
|
- - ! '>='
|
|
@@ -76,10 +76,10 @@ dependencies:
|
|
|
76
76
|
version: 1.3.3
|
|
77
77
|
type: :runtime
|
|
78
78
|
prerelease: false
|
|
79
|
-
version_requirements: *
|
|
79
|
+
version_requirements: *70268573004460
|
|
80
80
|
- !ruby/object:Gem::Dependency
|
|
81
81
|
name: sqlite3
|
|
82
|
-
requirement: &
|
|
82
|
+
requirement: &70268573004000 !ruby/object:Gem::Requirement
|
|
83
83
|
none: false
|
|
84
84
|
requirements:
|
|
85
85
|
- - ! '>='
|
|
@@ -87,7 +87,7 @@ dependencies:
|
|
|
87
87
|
version: '0'
|
|
88
88
|
type: :development
|
|
89
89
|
prerelease: false
|
|
90
|
-
version_requirements: *
|
|
90
|
+
version_requirements: *70268573004000
|
|
91
91
|
description: Add a blog to your Rails application in minutes with this mountable Rails
|
|
92
92
|
Engine
|
|
93
93
|
email:
|
|
@@ -283,7 +283,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
283
283
|
version: '0'
|
|
284
284
|
segments:
|
|
285
285
|
- 0
|
|
286
|
-
hash:
|
|
286
|
+
hash: 1735405866570455992
|
|
287
287
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
288
288
|
none: false
|
|
289
289
|
requirements:
|
|
@@ -292,7 +292,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
292
292
|
version: '0'
|
|
293
293
|
segments:
|
|
294
294
|
- 0
|
|
295
|
-
hash:
|
|
295
|
+
hash: 1735405866570455992
|
|
296
296
|
requirements: []
|
|
297
297
|
rubyforge_project:
|
|
298
298
|
rubygems_version: 1.8.11
|