blogit 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # Blogit (beta)
2
2
 
3
- This is a work in progress - you're welcome to start using it now though
3
+ Blogit is a flexible blogging solution for Rails apps. It:
4
+
5
+ * Is Rack based;
6
+ * Is a complete MVC solution based on Rails engines;
7
+ * Aims to work right out of the box but remain fully customisable.
4
8
 
5
9
  ## Installation
6
10
 
@@ -15,23 +19,53 @@ gem "blogit"
15
19
  Next, run:
16
20
 
17
21
  ``` bash
18
- # add an initializer to config/initializers with all of the
19
- # configuration options
22
+ # add an initializer to config/initializers with all of the configuration options
20
23
  $ rails g blogit:install
21
- ```
22
-
23
- And finally
24
-
25
- ``` ruby
26
24
  # This will add the necessary migrations to your app's db/migrate directory
27
25
  rake blogit:install:migrations
28
26
  # This will run any pending migrations
29
27
  rake db:migrate
28
+ ```
29
+ then add the following to your routes.rb file:
30
+
31
+ ``` bash
32
+ # config/routes.rb
33
+ mount Blogit::Engine => "/blog"
30
34
  ```
31
35
 
36
+ ... and finally, declare which of your models acts as blogger in your app (usually User).
37
+
38
+ ``` ruby
39
+ class User
40
+
41
+ blogs
42
+
43
+ end
44
+ ```
45
+
46
+ ## Configuration
47
+
48
+ Running `rails g blogit:install` will add an initializer file named blogit.rb. In here
49
+ you can set various configuration options. Please [read the wiki]() for a full list of the options available.
50
+
51
+ ## Issues
52
+
53
+ If you discover a problem with Blogit, please let us know about it.
54
+
55
+ **Remember** to search the [issues list](https://github.com/KatanaCode/blogit/issues) first in case your issue has already been raised
56
+ by another Githuber
57
+
58
+ ## Documentation
59
+
60
+ Full documentation is available here: http://rubydoc.info/gems/blogit
61
+
62
+ ## Contributing
63
+
64
+ You're welcome to contribute to Blogit. Please consult the [contribution guidelines](https://github.com/KatanaCode/blogit/wiki/Contributing) for more info.
65
+
32
66
  ## Legal Stuff
33
67
 
34
- Copyright 2011 Gavin Morrice
68
+ Copyright 2011 [Katana Code](http://katanacode.com)
35
69
 
36
70
  Permission is hereby granted, free of charge, to any person obtaining
37
71
  a copy of this software and associated documentation files (the
@@ -52,7 +86,10 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
52
86
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
53
87
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
54
88
 
89
+ ## More from Katana Code
90
+
91
+ Visit our [Katana Code Team Page](http://katanacode.github.com/ "Katana Code") for more gems and goodies!
55
92
 
56
93
  ## Credits
57
94
 
58
- Developed by [Bodacious (Gavin Morrice) @ Katana Code](http://gavinmorrice.com)
95
+ Developed by [Katana Code](http://katanacode.com)
@@ -12,7 +12,14 @@ module Blogit
12
12
  blogit_sweeper(:create, :update, :destroy)
13
13
 
14
14
  def index
15
- @posts = Post.for_index(params[:page])
15
+ respond_to do |format|
16
+ format.xml {
17
+ @posts = Post.order('created_at DESC')
18
+ }
19
+ format.html {
20
+ @posts = Post.for_index(params[:page])
21
+ }
22
+ end
16
23
  end
17
24
 
18
25
  def show
@@ -0,0 +1,11 @@
1
+ xml.instruct!
2
+ xml.urlset :xmlns => 'http://www.sitemaps.org/schemas/sitemap/0.9' do
3
+
4
+ for post in posts
5
+ xml.url do
6
+ xml.loc post_url(story)
7
+ xml.lastmod story.updated_at.xmlschema
8
+ end
9
+ end
10
+
11
+ end
@@ -1,3 +1,3 @@
1
1
  module Blogit
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
@@ -30,6 +30,23 @@ describe PostsController do
30
30
 
31
31
  end
32
32
 
33
+ describe "GET /index.xml" do
34
+
35
+
36
+ let(:posts) { [] }
37
+
38
+ def do_get(page=nil)
39
+ get :index, :use_route => :blogit, page: page.to_s, format: :xml
40
+ end
41
+
42
+ it "should load all posts in reverse date order" do
43
+ Blogit::Post.expects(:order).with('created_at DESC').returns(posts)
44
+ do_get
45
+ assigns(:posts).should == posts
46
+ end
47
+
48
+ end
49
+
33
50
  describe "GET 'new'" do
34
51
 
35
52
  context "when logged in" do
Binary file
@@ -3546,3 +3546,1121 @@ Completed 302 Found in 1ms
3546
3546
  Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1
3547
3547
   (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count
3548
3548
   (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count 
3549
+ Blogit::Post Load (11.9ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
3550
+  (0.9ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 230
3551
+ Processing by Blogit::CommentsController#create as JS
3552
+ Parameters: {"post_id"=>"230", "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"}
3553
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "230"]]
3554
+ SQL (89.6ms) 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, 26 Dec 2011 16:34:26 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 230], ["state", nil], ["updated_at", Mon, 26 Dec 2011 16:34:26 UTC +00:00], ["website", "http://gavinmorrice.com"]]
3555
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 230 LIMIT 1
3556
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 230
3557
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (10.5ms)
3558
+ Completed 200 OK in 235ms (Views: 100.4ms | ActiveRecord: 90.2ms)
3559
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 230
3560
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
3561
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 230
3562
+ Processing by Blogit::CommentsController#create as HTML
3563
+ Parameters: {"post_id"=>"230", "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"}
3564
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "230"]]
3565
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Mon, 26 Dec 2011 16:34:26 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 230], ["state", nil], ["updated_at", Mon, 26 Dec 2011 16:34:26 UTC +00:00], ["website", "http://gavinmorrice.com"]]
3566
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 230 LIMIT 1
3567
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 230
3568
+ Redirected to http://test.host/blog/posts/230-tis-is-a-blog-post-title
3569
+ Completed 302 Found in 118ms
3570
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 230
3571
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
3572
+ Processing by Blogit::CommentsController#create as HTML
3573
+ Parameters: {"post_id"=>"230", "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"}
3574
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "230"]]
3575
+ SQL (0.5ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 230], ["state", nil], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["website", "http://gavinmorrice.com"]]
3576
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 230 LIMIT 1
3577
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 230
3578
+ Redirected to http://test.host/blog/posts/230-tis-is-a-blog-post-title
3579
+ Completed 302 Found in 11ms
3580
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
3581
+ Processing by Blogit::CommentsController#create as HTML
3582
+ Parameters: {"post_id"=>"230", "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"}
3583
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "230"]]
3584
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 230], ["state", nil], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["website", "http://gavinmorrice.com"]]
3585
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 230 LIMIT 1
3586
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 230
3587
+ Redirected to http://test.host/blog/posts/230-tis-is-a-blog-post-title
3588
+ Completed 302 Found in 10ms
3589
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
3590
+ SQL (0.5ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 230], ["state", nil], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["website", "http://gavinmorrice.com"]]
3591
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 230
3592
+ User Load (29.1ms) SELECT "users".* FROM "users" LIMIT 1
3593
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 230]]
3594
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 230
3595
+ Processing by Blogit::CommentsController#destroy as JS
3596
+ Parameters: {"id"=>"86", "post_id"=>"230", "use_route"=>"blogit"}
3597
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "230"]]
3598
+ Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 230 AND "blog_comments"."id" = ? LIMIT 1 [["id", "86"]]
3599
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 230 LIMIT 1
3600
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 230
3601
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 86]]
3602
+ Completed 200 OK in 10ms (Views: 2.2ms | ActiveRecord: 0.5ms)
3603
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 230]]
3604
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 230
3605
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
3606
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 230], ["state", nil], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["website", "http://gavinmorrice.com"]]
3607
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 230
3608
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3609
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 230]]
3610
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 230
3611
+ Processing by Blogit::CommentsController#destroy as HTML
3612
+ Parameters: {"id"=>"87", "post_id"=>"230", "use_route"=>"blogit"}
3613
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "230"]]
3614
+ Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 230 AND "blog_comments"."id" = ? LIMIT 1 [["id", "87"]]
3615
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 230 LIMIT 1
3616
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 230
3617
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 87]]
3618
+ Redirected to http://test.host/blog/posts/230-tis-is-a-blog-post-title
3619
+ Completed 302 Found in 7ms
3620
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 230]]
3621
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 230
3622
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
3623
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 230], ["state", nil], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["website", "http://gavinmorrice.com"]]
3624
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 230
3625
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3626
+ Processing by Blogit::CommentsController#destroy as HTML
3627
+ Parameters: {"id"=>"88", "post_id"=>"230", "use_route"=>"blogit"}
3628
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "230"]]
3629
+ Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 230 AND "blog_comments"."id" = ? LIMIT 1 [["id", "88"]]
3630
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 230 LIMIT 1
3631
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 230
3632
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 88]]
3633
+ Redirected to http://test.host/blog/posts/230-tis-is-a-blog-post-title
3634
+ Completed 302 Found in 8ms
3635
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
3636
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 230], ["state", nil], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["website", "http://gavinmorrice.com"]]
3637
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 230
3638
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" 
3639
+ Processing by Blogit::CommentsController#destroy as HTML
3640
+ Parameters: {"id"=>"89", "post_id"=>"230", "use_route"=>"blogit"}
3641
+ User Load (34.7ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
3642
+ Redirected to http://test.host/blog/
3643
+ Completed 302 Found in 36ms
3644
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" 
3645
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
3646
+ SQL (0.5ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 230], ["state", nil], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["website", "http://gavinmorrice.com"]]
3647
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 230
3648
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" 
3649
+ Processing by Blogit::CommentsController#destroy as HTML
3650
+ Parameters: {"id"=>"90", "post_id"=>"230", "use_route"=>"blogit"}
3651
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
3652
+ Redirected to http://test.host/blog/
3653
+ Completed 302 Found in 1ms
3654
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" 
3655
+ Processing by Blogit::PostsController#index as HTML
3656
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
3657
+ Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms)
3658
+ Processing by Blogit::PostsController#index as HTML
3659
+ Parameters: {"page"=>"2", "use_route"=>"blogit"}
3660
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
3661
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3662
+ Processing by Blogit::PostsController#new as HTML
3663
+ Parameters: {"use_route"=>"blogit"}
3664
+ Completed 200 OK in 14ms (Views: 8.7ms | ActiveRecord: 0.0ms)
3665
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3666
+ Processing by Blogit::PostsController#new as HTML
3667
+ Parameters: {"use_route"=>"blogit"}
3668
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
3669
+ Processing by Blogit::PostsController#new as HTML
3670
+ Parameters: {"use_route"=>"blogit"}
3671
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
3672
+ Redirected to http://test.host/blog/
3673
+ Completed 302 Found in 1ms
3674
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3675
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["username", "bodacious"]]
3676
+ Processing by Blogit::PostsController#create as HTML
3677
+ 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"}
3678
+ Redirected to http://test.host/blog/posts
3679
+ Completed 302 Found in 1ms
3680
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3681
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["username", "bodacious"]]
3682
+ Processing by Blogit::PostsController#edit as HTML
3683
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
3684
+ Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms)
3685
+ Processing by Blogit::PostsController#edit as HTML
3686
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
3687
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
3688
+ Redirected to http://test.host/blog/
3689
+ Completed 302 Found in 1ms
3690
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3691
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["username", "bodacious"]]
3692
+ Processing by Blogit::PostsController#update as HTML
3693
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
3694
+ Redirected to http://test.host/blog/posts
3695
+ Completed 302 Found in 1ms
3696
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1
3697
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["username", "bodacious"]]
3698
+ Processing by Blogit::PostsController#update as HTML
3699
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
3700
+ SQL (14.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 373], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["title", "Something new"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00]]
3701
+ Redirected to http://test.host/blog/posts/245-something-new
3702
+ Completed 302 Found in 21ms
3703
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3704
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["username", "bodacious"]]
3705
+ Processing by Blogit::PostsController#update as HTML
3706
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
3707
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 374], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["title", "Something new"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00]]
3708
+ Redirected to http://test.host/blog/posts/246-something-new
3709
+ Completed 302 Found in 6ms
3710
+ Processing by Blogit::PostsController#update as HTML
3711
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
3712
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
3713
+ Redirected to http://test.host/blog/
3714
+ Completed 302 Found in 1ms
3715
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["username", "bodacious"]]
3716
+ Processing by Blogit::PostsController#show as HTML
3717
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
3718
+ Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.0ms)
3719
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3720
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["username", "bodacious"]]
3721
+ Processing by Blogit::PostsController#destroy as HTML
3722
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
3723
+ Redirected to http://test.host/blog/posts
3724
+ Completed 302 Found in 1ms
3725
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1
3726
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["username", "bodacious"]]
3727
+ Processing by Blogit::PostsController#destroy as HTML
3728
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
3729
+ Redirected to http://test.host/blog/posts
3730
+ Completed 302 Found in 11ms
3731
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3732
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["username", "bodacious"]]
3733
+ Processing by Blogit::PostsController#destroy as HTML
3734
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
3735
+ Redirected to http://test.host/blog/posts
3736
+ Completed 302 Found in 1ms
3737
+ Processing by Blogit::PostsController#destroy as HTML
3738
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
3739
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
3740
+ Redirected to http://test.host/blog/
3741
+ Completed 302 Found in 1ms
3742
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["username", "bodacious"]]
3743
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 379], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00]]
3744
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["username", "bodacious"]]
3745
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 380], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00]]
3746
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["username", "bodacious"]]
3747
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 381], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00]]
3748
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["username", "bodacious"]]
3749
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 382], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00]]
3750
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["username", "bodacious"]]
3751
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 383], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00]]
3752
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["username", "bodacious"]]
3753
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 384], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00]]
3754
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["username", "bodacious"]]
3755
+ SQL (20.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 385], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00]]
3756
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["username", "Jeronimo"]]
3757
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 386 LIMIT 1
3758
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:27 UTC +00:00], ["username", "Jeronimo"]]
3759
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 387 LIMIT 1
3760
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
3761
+ ActsAsTaggableOn::Tagging Load (10.0ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 230 AND "taggings"."taggable_type" = 'Blogit::Post'
3762
+ SQL (0.1ms) 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" = 230 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3763
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 230]]
3764
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 231 AND "taggings"."taggable_type" = 'Blogit::Post'
3765
+ SQL (0.1ms) 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" = 231 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3766
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 231]]
3767
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 232 AND "taggings"."taggable_type" = 'Blogit::Post'
3768
+ SQL (0.1ms) 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" = 232 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3769
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 232]]
3770
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 233 AND "taggings"."taggable_type" = 'Blogit::Post'
3771
+ SQL (0.1ms) 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" = 233 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3772
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 233]]
3773
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 234 AND "taggings"."taggable_type" = 'Blogit::Post'
3774
+ SQL (0.1ms) 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" = 234 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3775
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 234]]
3776
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 235 AND "taggings"."taggable_type" = 'Blogit::Post'
3777
+ SQL (0.1ms) 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" = 235 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3778
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 235]]
3779
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 236 AND "taggings"."taggable_type" = 'Blogit::Post'
3780
+ SQL (0.1ms) 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" = 236 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3781
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 236]]
3782
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 237 AND "taggings"."taggable_type" = 'Blogit::Post'
3783
+ SQL (0.1ms) 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" = 237 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3784
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 237]]
3785
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 238 AND "taggings"."taggable_type" = 'Blogit::Post'
3786
+ SQL (0.1ms) 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" = 238 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3787
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 238]]
3788
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 239 AND "taggings"."taggable_type" = 'Blogit::Post'
3789
+ SQL (0.1ms) 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" = 239 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3790
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 239]]
3791
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 240 AND "taggings"."taggable_type" = 'Blogit::Post'
3792
+ SQL (0.1ms) 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" = 240 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3793
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 240]]
3794
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 241 AND "taggings"."taggable_type" = 'Blogit::Post'
3795
+ SQL (0.1ms) 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" = 241 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3796
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 241]]
3797
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 242 AND "taggings"."taggable_type" = 'Blogit::Post'
3798
+ SQL (0.1ms) 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" = 242 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3799
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 242]]
3800
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 243 AND "taggings"."taggable_type" = 'Blogit::Post'
3801
+ SQL (0.1ms) 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" = 243 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3802
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 243]]
3803
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 244 AND "taggings"."taggable_type" = 'Blogit::Post'
3804
+ SQL (0.1ms) 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" = 244 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3805
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 244]]
3806
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 245 AND "taggings"."taggable_type" = 'Blogit::Post'
3807
+ SQL (0.1ms) 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" = 245 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3808
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 245]]
3809
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 246 AND "taggings"."taggable_type" = 'Blogit::Post'
3810
+ SQL (0.1ms) 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" = 246 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3811
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 246]]
3812
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 247 AND "taggings"."taggable_type" = 'Blogit::Post'
3813
+ SQL (0.1ms) 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" = 247 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3814
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 247]]
3815
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 248 AND "taggings"."taggable_type" = 'Blogit::Post'
3816
+ SQL (0.1ms) 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" = 248 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3817
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 248]]
3818
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 249 AND "taggings"."taggable_type" = 'Blogit::Post'
3819
+ SQL (0.1ms) 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" = 249 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3820
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 249]]
3821
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 250 AND "taggings"."taggable_type" = 'Blogit::Post'
3822
+ SQL (0.1ms) 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" = 250 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3823
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 250]]
3824
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 251 AND "taggings"."taggable_type" = 'Blogit::Post'
3825
+ SQL (0.1ms) 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" = 251 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3826
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 251]]
3827
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 252 AND "taggings"."taggable_type" = 'Blogit::Post'
3828
+ SQL (0.1ms) 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" = 252 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3829
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 252]]
3830
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 253 AND "taggings"."taggable_type" = 'Blogit::Post'
3831
+ SQL (0.1ms) 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" = 253 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
3832
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 253]]
3833
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["username", "bodacious"]]
3834
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 388], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00]]
3835
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["username", "bodacious"]]
3836
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 389], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 25 Dec 2011 16:34:28 UTC +00:00]]
3837
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["username", "bodacious"]]
3838
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 390], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 24 Dec 2011 16:34:28 UTC +00:00]]
3839
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["username", "bodacious"]]
3840
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 391], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 23 Dec 2011 16:34:28 UTC +00:00]]
3841
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["username", "bodacious"]]
3842
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 392], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 22 Dec 2011 16:34:28 UTC +00:00]]
3843
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["username", "bodacious"]]
3844
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 393], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 21 Dec 2011 16:34:28 UTC +00:00]]
3845
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["username", "bodacious"]]
3846
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 394], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 20 Dec 2011 16:34:28 UTC +00:00]]
3847
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["username", "bodacious"]]
3848
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 395], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 19 Dec 2011 16:34:28 UTC +00:00]]
3849
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["username", "bodacious"]]
3850
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 396], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 18 Dec 2011 16:34:28 UTC +00:00]]
3851
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["username", "bodacious"]]
3852
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 397], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 17 Dec 2011 16:34:28 UTC +00:00]]
3853
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["username", "bodacious"]]
3854
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 398], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 16 Dec 2011 16:34:28 UTC +00:00]]
3855
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["username", "bodacious"]]
3856
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 399], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 15 Dec 2011 16:34:28 UTC +00:00]]
3857
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["username", "bodacious"]]
3858
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 400], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 14 Dec 2011 16:34:28 UTC +00:00]]
3859
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["username", "bodacious"]]
3860
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 401], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 13 Dec 2011 16:34:28 UTC +00:00]]
3861
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["username", "bodacious"]]
3862
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 402], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:34:28 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 12 Dec 2011 16:34:28 UTC +00:00]]
3863
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0
3864
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1
3865
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count
3866
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count 
3867
+ Processing by Blogit::PostsController#index as HTML
3868
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
3869
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (9.1ms)
3870
+ Completed 200 OK in 39ms (Views: 38.6ms | ActiveRecord: 0.0ms)
3871
+ Processing by Blogit::PostsController#index as HTML
3872
+ Parameters: {"page"=>"2", "use_route"=>"blogit"}
3873
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
3874
+ Processing by Blogit::PostsController#index as XML
3875
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
3876
+ Completed 500 Internal Server Error in 19ms
3877
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1
3878
+ Processing by Blogit::PostsController#new as HTML
3879
+ Parameters: {"use_route"=>"blogit"}
3880
+ Completed 200 OK in 79ms (Views: 1.3ms | ActiveRecord: 0.2ms)
3881
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3882
+ Processing by Blogit::PostsController#new as HTML
3883
+ Parameters: {"use_route"=>"blogit"}
3884
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
3885
+ Processing by Blogit::PostsController#new as HTML
3886
+ Parameters: {"use_route"=>"blogit"}
3887
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
3888
+ Redirected to http://test.host/blog/
3889
+ Completed 302 Found in 6ms
3890
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3891
+ SQL (11.0ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["username", "bodacious"]]
3892
+ Processing by Blogit::PostsController#create as HTML
3893
+ 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"}
3894
+ Redirected to http://test.host/blog/posts
3895
+ Completed 302 Found in 1ms
3896
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3897
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["username", "bodacious"]]
3898
+ Processing by Blogit::PostsController#edit as HTML
3899
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
3900
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
3901
+ Processing by Blogit::PostsController#edit as HTML
3902
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
3903
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
3904
+ Redirected to http://test.host/blog/
3905
+ Completed 302 Found in 1ms
3906
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3907
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["username", "bodacious"]]
3908
+ Processing by Blogit::PostsController#update as HTML
3909
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
3910
+ Redirected to http://test.host/blog/posts
3911
+ Completed 302 Found in 1ms
3912
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3913
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["username", "bodacious"]]
3914
+ Processing by Blogit::PostsController#update as HTML
3915
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
3916
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 406], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["title", "Something new"], ["updated_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00]]
3917
+ Redirected to http://test.host/blog/posts/269-something-new
3918
+ Completed 302 Found in 65ms
3919
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3920
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["username", "bodacious"]]
3921
+ Processing by Blogit::PostsController#update as HTML
3922
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
3923
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 407], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["title", "Something new"], ["updated_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00]]
3924
+ Redirected to http://test.host/blog/posts/270-something-new
3925
+ Completed 302 Found in 6ms
3926
+ Processing by Blogit::PostsController#update as HTML
3927
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
3928
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
3929
+ Redirected to http://test.host/blog/
3930
+ Completed 302 Found in 1ms
3931
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["username", "bodacious"]]
3932
+ Processing by Blogit::PostsController#show as HTML
3933
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
3934
+ Completed 200 OK in 10ms (Views: 1.3ms | ActiveRecord: 0.2ms)
3935
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3936
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["username", "bodacious"]]
3937
+ Processing by Blogit::PostsController#destroy as HTML
3938
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
3939
+ Redirected to http://test.host/blog/posts
3940
+ Completed 302 Found in 1ms
3941
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3942
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["username", "bodacious"]]
3943
+ Processing by Blogit::PostsController#destroy as HTML
3944
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
3945
+ Redirected to http://test.host/blog/posts
3946
+ Completed 302 Found in 11ms
3947
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3948
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:36:55 UTC +00:00], ["username", "bodacious"]]
3949
+ Processing by Blogit::PostsController#destroy as HTML
3950
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
3951
+ Redirected to http://test.host/blog/posts
3952
+ Completed 302 Found in 1ms
3953
+ Processing by Blogit::PostsController#destroy as HTML
3954
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
3955
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
3956
+ Redirected to http://test.host/blog/
3957
+ Completed 302 Found in 1ms
3958
+ Processing by Blogit::PostsController#index as HTML
3959
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
3960
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (9.4ms)
3961
+ Completed 200 OK in 63ms (Views: 62.9ms | ActiveRecord: 0.0ms)
3962
+ Processing by Blogit::PostsController#index as HTML
3963
+ Parameters: {"page"=>"2", "use_route"=>"blogit"}
3964
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
3965
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1
3966
+ Processing by Blogit::PostsController#new as HTML
3967
+ Parameters: {"use_route"=>"blogit"}
3968
+ Completed 200 OK in 80ms (Views: 1.5ms | ActiveRecord: 0.2ms)
3969
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3970
+ Processing by Blogit::PostsController#new as HTML
3971
+ Parameters: {"use_route"=>"blogit"}
3972
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
3973
+ Processing by Blogit::PostsController#new as HTML
3974
+ Parameters: {"use_route"=>"blogit"}
3975
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
3976
+ Redirected to http://test.host/blog/
3977
+ Completed 302 Found in 6ms
3978
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3979
+ SQL (11.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["username", "bodacious"]]
3980
+ Processing by Blogit::PostsController#create as HTML
3981
+ 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"}
3982
+ Redirected to http://test.host/blog/posts
3983
+ Completed 302 Found in 1ms
3984
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1
3985
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["username", "bodacious"]]
3986
+ Processing by Blogit::PostsController#edit as HTML
3987
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
3988
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3989
+ Processing by Blogit::PostsController#edit as HTML
3990
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
3991
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
3992
+ Redirected to http://test.host/blog/
3993
+ Completed 302 Found in 1ms
3994
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
3995
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["username", "bodacious"]]
3996
+ Processing by Blogit::PostsController#update as HTML
3997
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
3998
+ Redirected to http://test.host/blog/posts
3999
+ Completed 302 Found in 1ms
4000
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4001
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["username", "bodacious"]]
4002
+ Processing by Blogit::PostsController#update as HTML
4003
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4004
+ SQL (0.6ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 415], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["title", "Something new"], ["updated_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00]]
4005
+ Redirected to http://test.host/blog/posts/271-something-new
4006
+ Completed 302 Found in 96ms
4007
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4008
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["username", "bodacious"]]
4009
+ Processing by Blogit::PostsController#update as HTML
4010
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4011
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 416], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["title", "Something new"], ["updated_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00]]
4012
+ Redirected to http://test.host/blog/posts/272-something-new
4013
+ Completed 302 Found in 6ms
4014
+ Processing by Blogit::PostsController#update as HTML
4015
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4016
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4017
+ Redirected to http://test.host/blog/
4018
+ Completed 302 Found in 1ms
4019
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["username", "bodacious"]]
4020
+ Processing by Blogit::PostsController#show as HTML
4021
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4022
+ Completed 200 OK in 35ms (Views: 1.4ms | ActiveRecord: 0.2ms)
4023
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4024
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["username", "bodacious"]]
4025
+ Processing by Blogit::PostsController#destroy as HTML
4026
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4027
+ Redirected to http://test.host/blog/posts
4028
+ Completed 302 Found in 1ms
4029
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4030
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["username", "bodacious"]]
4031
+ Processing by Blogit::PostsController#destroy as HTML
4032
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4033
+ Redirected to http://test.host/blog/posts
4034
+ Completed 302 Found in 10ms
4035
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4036
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:01 UTC +00:00], ["username", "bodacious"]]
4037
+ Processing by Blogit::PostsController#destroy as HTML
4038
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4039
+ Redirected to http://test.host/blog/posts
4040
+ Completed 302 Found in 1ms
4041
+ Processing by Blogit::PostsController#destroy as HTML
4042
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4043
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4044
+ Redirected to http://test.host/blog/
4045
+ Completed 302 Found in 1ms
4046
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC
4047
+ Processing by Blogit::PostsController#index as HTML
4048
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
4049
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (9.1ms)
4050
+ Completed 200 OK in 62ms (Views: 38.4ms | ActiveRecord: 0.0ms)
4051
+ Processing by Blogit::PostsController#index as HTML
4052
+ Parameters: {"page"=>"2", "use_route"=>"blogit"}
4053
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
4054
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4055
+ Processing by Blogit::PostsController#new as HTML
4056
+ Parameters: {"use_route"=>"blogit"}
4057
+ Completed 200 OK in 79ms (Views: 1.3ms | ActiveRecord: 0.2ms)
4058
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4059
+ Processing by Blogit::PostsController#new as HTML
4060
+ Parameters: {"use_route"=>"blogit"}
4061
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
4062
+ Processing by Blogit::PostsController#new as HTML
4063
+ Parameters: {"use_route"=>"blogit"}
4064
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4065
+ Redirected to http://test.host/blog/
4066
+ Completed 302 Found in 6ms
4067
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4068
+ SQL (11.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["username", "bodacious"]]
4069
+ Processing by Blogit::PostsController#create as HTML
4070
+ 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"}
4071
+ Redirected to http://test.host/blog/posts
4072
+ Completed 302 Found in 1ms
4073
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4074
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["username", "bodacious"]]
4075
+ Processing by Blogit::PostsController#edit as HTML
4076
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4077
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
4078
+ Processing by Blogit::PostsController#edit as HTML
4079
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4080
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4081
+ Redirected to http://test.host/blog/
4082
+ Completed 302 Found in 1ms
4083
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4084
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["username", "bodacious"]]
4085
+ Processing by Blogit::PostsController#update as HTML
4086
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4087
+ Redirected to http://test.host/blog/posts
4088
+ Completed 302 Found in 1ms
4089
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1
4090
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["username", "bodacious"]]
4091
+ Processing by Blogit::PostsController#update as HTML
4092
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4093
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 424], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["title", "Something new"], ["updated_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00]]
4094
+ Redirected to http://test.host/blog/posts/273-something-new
4095
+ Completed 302 Found in 94ms
4096
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4097
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["username", "bodacious"]]
4098
+ Processing by Blogit::PostsController#update as HTML
4099
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4100
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 425], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["title", "Something new"], ["updated_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00]]
4101
+ Redirected to http://test.host/blog/posts/274-something-new
4102
+ Completed 302 Found in 6ms
4103
+ Processing by Blogit::PostsController#update as HTML
4104
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4105
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4106
+ Redirected to http://test.host/blog/
4107
+ Completed 302 Found in 1ms
4108
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["username", "bodacious"]]
4109
+ Processing by Blogit::PostsController#show as HTML
4110
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4111
+ Completed 200 OK in 35ms (Views: 1.3ms | ActiveRecord: 0.2ms)
4112
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4113
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["username", "bodacious"]]
4114
+ Processing by Blogit::PostsController#destroy as HTML
4115
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4116
+ Redirected to http://test.host/blog/posts
4117
+ Completed 302 Found in 1ms
4118
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4119
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["username", "bodacious"]]
4120
+ Processing by Blogit::PostsController#destroy as HTML
4121
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4122
+ Redirected to http://test.host/blog/posts
4123
+ Completed 302 Found in 10ms
4124
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4125
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:49 UTC +00:00], ["username", "bodacious"]]
4126
+ Processing by Blogit::PostsController#destroy as HTML
4127
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4128
+ Redirected to http://test.host/blog/posts
4129
+ Completed 302 Found in 1ms
4130
+ Processing by Blogit::PostsController#destroy as HTML
4131
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4132
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4133
+ Redirected to http://test.host/blog/
4134
+ Completed 302 Found in 1ms
4135
+ Blogit::Post Load (0.4ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC
4136
+ Processing by Blogit::PostsController#index as HTML
4137
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
4138
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (9.2ms)
4139
+ Completed 200 OK in 39ms (Views: 38.6ms | ActiveRecord: 0.0ms)
4140
+ Processing by Blogit::PostsController#index as HTML
4141
+ Parameters: {"page"=>"2", "use_route"=>"blogit"}
4142
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
4143
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4144
+ Processing by Blogit::PostsController#new as HTML
4145
+ Parameters: {"use_route"=>"blogit"}
4146
+ Completed 200 OK in 80ms (Views: 1.2ms | ActiveRecord: 0.2ms)
4147
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4148
+ Processing by Blogit::PostsController#new as HTML
4149
+ Parameters: {"use_route"=>"blogit"}
4150
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
4151
+ Processing by Blogit::PostsController#new as HTML
4152
+ Parameters: {"use_route"=>"blogit"}
4153
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4154
+ Redirected to http://test.host/blog/
4155
+ Completed 302 Found in 6ms
4156
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4157
+ SQL (11.7ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["username", "bodacious"]]
4158
+ Processing by Blogit::PostsController#create as HTML
4159
+ 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"}
4160
+ Redirected to http://test.host/blog/posts
4161
+ Completed 302 Found in 1ms
4162
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4163
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["username", "bodacious"]]
4164
+ Processing by Blogit::PostsController#edit as HTML
4165
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4166
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
4167
+ Processing by Blogit::PostsController#edit as HTML
4168
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4169
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4170
+ Redirected to http://test.host/blog/
4171
+ Completed 302 Found in 1ms
4172
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4173
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["username", "bodacious"]]
4174
+ Processing by Blogit::PostsController#update as HTML
4175
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4176
+ Redirected to http://test.host/blog/posts
4177
+ Completed 302 Found in 1ms
4178
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4179
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["username", "bodacious"]]
4180
+ Processing by Blogit::PostsController#update as HTML
4181
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4182
+ SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 433], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["title", "Something new"], ["updated_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00]]
4183
+ Redirected to http://test.host/blog/posts/275-something-new
4184
+ Completed 302 Found in 99ms
4185
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4186
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["username", "bodacious"]]
4187
+ Processing by Blogit::PostsController#update as HTML
4188
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4189
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 434], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["title", "Something new"], ["updated_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00]]
4190
+ Redirected to http://test.host/blog/posts/276-something-new
4191
+ Completed 302 Found in 6ms
4192
+ Processing by Blogit::PostsController#update as HTML
4193
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4194
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4195
+ Redirected to http://test.host/blog/
4196
+ Completed 302 Found in 1ms
4197
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["username", "bodacious"]]
4198
+ Processing by Blogit::PostsController#show as HTML
4199
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4200
+ Completed 200 OK in 37ms (Views: 1.4ms | ActiveRecord: 0.2ms)
4201
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4202
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["username", "bodacious"]]
4203
+ Processing by Blogit::PostsController#destroy as HTML
4204
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4205
+ Redirected to http://test.host/blog/posts
4206
+ Completed 302 Found in 1ms
4207
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4208
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["username", "bodacious"]]
4209
+ Processing by Blogit::PostsController#destroy as HTML
4210
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4211
+ Redirected to http://test.host/blog/posts
4212
+ Completed 302 Found in 11ms
4213
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4214
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:40:55 UTC +00:00], ["username", "bodacious"]]
4215
+ Processing by Blogit::PostsController#destroy as HTML
4216
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4217
+ Redirected to http://test.host/blog/posts
4218
+ Completed 302 Found in 1ms
4219
+ Processing by Blogit::PostsController#destroy as HTML
4220
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4221
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4222
+ Redirected to http://test.host/blog/
4223
+ Completed 302 Found in 1ms
4224
+ Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC
4225
+ Processing by Blogit::PostsController#index as HTML
4226
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
4227
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (9.0ms)
4228
+ Completed 200 OK in 61ms (Views: 37.9ms | ActiveRecord: 0.0ms)
4229
+ Processing by Blogit::PostsController#index as HTML
4230
+ Parameters: {"page"=>"2", "use_route"=>"blogit"}
4231
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
4232
+ Processing by Blogit::PostsController#index as XML
4233
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
4234
+ Completed 200 OK in 82ms (Views: 81.6ms | ActiveRecord: 0.0ms)
4235
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4236
+ Processing by Blogit::PostsController#new as HTML
4237
+ Parameters: {"use_route"=>"blogit"}
4238
+ Completed 200 OK in 78ms (Views: 1.3ms | ActiveRecord: 0.2ms)
4239
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4240
+ Processing by Blogit::PostsController#new as HTML
4241
+ Parameters: {"use_route"=>"blogit"}
4242
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
4243
+ Processing by Blogit::PostsController#new as HTML
4244
+ Parameters: {"use_route"=>"blogit"}
4245
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4246
+ Redirected to http://test.host/blog/
4247
+ Completed 302 Found in 6ms
4248
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4249
+ SQL (11.0ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["username", "bodacious"]]
4250
+ Processing by Blogit::PostsController#create as HTML
4251
+ 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"}
4252
+ Redirected to http://test.host/blog/posts
4253
+ Completed 302 Found in 1ms
4254
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4255
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["username", "bodacious"]]
4256
+ Processing by Blogit::PostsController#edit as HTML
4257
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4258
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
4259
+ Processing by Blogit::PostsController#edit as HTML
4260
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4261
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4262
+ Redirected to http://test.host/blog/
4263
+ Completed 302 Found in 1ms
4264
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4265
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["username", "bodacious"]]
4266
+ Processing by Blogit::PostsController#update as HTML
4267
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4268
+ Redirected to http://test.host/blog/posts
4269
+ Completed 302 Found in 1ms
4270
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4271
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["username", "bodacious"]]
4272
+ Processing by Blogit::PostsController#update as HTML
4273
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4274
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 442], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["title", "Something new"], ["updated_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00]]
4275
+ Redirected to http://test.host/blog/posts/277-something-new
4276
+ Completed 302 Found in 66ms
4277
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4278
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["username", "bodacious"]]
4279
+ Processing by Blogit::PostsController#update as HTML
4280
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4281
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 443], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["title", "Something new"], ["updated_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00]]
4282
+ Redirected to http://test.host/blog/posts/278-something-new
4283
+ Completed 302 Found in 31ms
4284
+ Processing by Blogit::PostsController#update as HTML
4285
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4286
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4287
+ Redirected to http://test.host/blog/
4288
+ Completed 302 Found in 1ms
4289
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["username", "bodacious"]]
4290
+ Processing by Blogit::PostsController#show as HTML
4291
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4292
+ Completed 200 OK in 9ms (Views: 1.3ms | ActiveRecord: 0.2ms)
4293
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4294
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["username", "bodacious"]]
4295
+ Processing by Blogit::PostsController#destroy as HTML
4296
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4297
+ Redirected to http://test.host/blog/posts
4298
+ Completed 302 Found in 1ms
4299
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4300
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["username", "bodacious"]]
4301
+ Processing by Blogit::PostsController#destroy as HTML
4302
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4303
+ Redirected to http://test.host/blog/posts
4304
+ Completed 302 Found in 14ms
4305
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1
4306
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:16 UTC +00:00], ["username", "bodacious"]]
4307
+ Processing by Blogit::PostsController#destroy as HTML
4308
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4309
+ Redirected to http://test.host/blog/posts
4310
+ Completed 302 Found in 1ms
4311
+ Processing by Blogit::PostsController#destroy as HTML
4312
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4313
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4314
+ Redirected to http://test.host/blog/
4315
+ Completed 302 Found in 1ms
4316
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4317
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 254
4318
+ Processing by Blogit::CommentsController#create as JS
4319
+ Parameters: {"post_id"=>"254", "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"}
4320
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "254"]]
4321
+ SQL (35.2ms) 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, 26 Dec 2011 16:41:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 254], ["state", nil], ["updated_at", Mon, 26 Dec 2011 16:41:22 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4322
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 254 LIMIT 1
4323
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 254
4324
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.2ms)
4325
+ Completed 200 OK in 171ms (Views: 57.4ms | ActiveRecord: 35.7ms)
4326
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 254
4327
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4328
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 254
4329
+ Processing by Blogit::CommentsController#create as HTML
4330
+ Parameters: {"post_id"=>"254", "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"}
4331
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "254"]]
4332
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Mon, 26 Dec 2011 16:41:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 254], ["state", nil], ["updated_at", Mon, 26 Dec 2011 16:41:22 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4333
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 254 LIMIT 1
4334
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 254
4335
+ Redirected to http://test.host/blog/posts/254-tis-is-a-blog-post-title
4336
+ Completed 302 Found in 94ms
4337
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 254
4338
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4339
+ Processing by Blogit::CommentsController#create as HTML
4340
+ Parameters: {"post_id"=>"254", "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"}
4341
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "254"]]
4342
+ SQL (0.5ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 254], ["state", nil], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4343
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 254 LIMIT 1
4344
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 254
4345
+ Redirected to http://test.host/blog/posts/254-tis-is-a-blog-post-title
4346
+ Completed 302 Found in 9ms
4347
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4348
+ Processing by Blogit::CommentsController#create as HTML
4349
+ Parameters: {"post_id"=>"254", "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"}
4350
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "254"]]
4351
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 254], ["state", nil], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4352
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 254 LIMIT 1
4353
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 254
4354
+ Redirected to http://test.host/blog/posts/254-tis-is-a-blog-post-title
4355
+ Completed 302 Found in 10ms
4356
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4357
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 254], ["state", nil], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4358
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 254
4359
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1
4360
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 254]]
4361
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 254
4362
+ Processing by Blogit::CommentsController#destroy as JS
4363
+ Parameters: {"id"=>"95", "post_id"=>"254", "use_route"=>"blogit"}
4364
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "254"]]
4365
+ Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 254 AND "blog_comments"."id" = ? LIMIT 1 [["id", "95"]]
4366
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 254 LIMIT 1
4367
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 254
4368
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 95]]
4369
+ Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.5ms)
4370
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 254]]
4371
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 254
4372
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4373
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 254], ["state", nil], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4374
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 254
4375
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4376
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 254]]
4377
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 254
4378
+ Processing by Blogit::CommentsController#destroy as HTML
4379
+ Parameters: {"id"=>"96", "post_id"=>"254", "use_route"=>"blogit"}
4380
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "254"]]
4381
+ Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 254 AND "blog_comments"."id" = ? LIMIT 1 [["id", "96"]]
4382
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 254 LIMIT 1
4383
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 254
4384
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 96]]
4385
+ Redirected to http://test.host/blog/posts/254-tis-is-a-blog-post-title
4386
+ Completed 302 Found in 7ms
4387
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 254]]
4388
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 254
4389
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4390
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 254], ["state", nil], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4391
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 254
4392
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4393
+ Processing by Blogit::CommentsController#destroy as HTML
4394
+ Parameters: {"id"=>"97", "post_id"=>"254", "use_route"=>"blogit"}
4395
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "254"]]
4396
+ Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 254 AND "blog_comments"."id" = ? LIMIT 1 [["id", "97"]]
4397
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 254 LIMIT 1
4398
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 254
4399
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 97]]
4400
+ Redirected to http://test.host/blog/posts/254-tis-is-a-blog-post-title
4401
+ Completed 302 Found in 7ms
4402
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4403
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 254], ["state", nil], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4404
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 254
4405
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" 
4406
+ Processing by Blogit::CommentsController#destroy as HTML
4407
+ Parameters: {"id"=>"98", "post_id"=>"254", "use_route"=>"blogit"}
4408
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4409
+ Redirected to http://test.host/blog/
4410
+ Completed 302 Found in 1ms
4411
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" 
4412
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4413
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 254], ["state", nil], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4414
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 254
4415
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" 
4416
+ Processing by Blogit::CommentsController#destroy as HTML
4417
+ Parameters: {"id"=>"99", "post_id"=>"254", "use_route"=>"blogit"}
4418
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4419
+ Redirected to http://test.host/blog/
4420
+ Completed 302 Found in 1ms
4421
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" 
4422
+ Processing by Blogit::PostsController#index as HTML
4423
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
4424
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
4425
+ Processing by Blogit::PostsController#index as HTML
4426
+ Parameters: {"page"=>"2", "use_route"=>"blogit"}
4427
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
4428
+ Processing by Blogit::PostsController#index as XML
4429
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
4430
+ Completed 200 OK in 16ms (Views: 16.3ms | ActiveRecord: 0.0ms)
4431
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4432
+ Processing by Blogit::PostsController#new as HTML
4433
+ Parameters: {"use_route"=>"blogit"}
4434
+ Completed 200 OK in 7ms (Views: 1.2ms | ActiveRecord: 0.0ms)
4435
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4436
+ Processing by Blogit::PostsController#new as HTML
4437
+ Parameters: {"use_route"=>"blogit"}
4438
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
4439
+ Processing by Blogit::PostsController#new as HTML
4440
+ Parameters: {"use_route"=>"blogit"}
4441
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4442
+ Redirected to http://test.host/blog/
4443
+ Completed 302 Found in 1ms
4444
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4445
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["username", "bodacious"]]
4446
+ Processing by Blogit::PostsController#create as HTML
4447
+ 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"}
4448
+ Redirected to http://test.host/blog/posts
4449
+ Completed 302 Found in 1ms
4450
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4451
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["username", "bodacious"]]
4452
+ Processing by Blogit::PostsController#edit as HTML
4453
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4454
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
4455
+ Processing by Blogit::PostsController#edit as HTML
4456
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4457
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4458
+ Redirected to http://test.host/blog/
4459
+ Completed 302 Found in 1ms
4460
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4461
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["username", "bodacious"]]
4462
+ Processing by Blogit::PostsController#update as HTML
4463
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4464
+ Redirected to http://test.host/blog/posts
4465
+ Completed 302 Found in 1ms
4466
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4467
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["username", "bodacious"]]
4468
+ Processing by Blogit::PostsController#update as HTML
4469
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4470
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 451], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["title", "Something new"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00]]
4471
+ Redirected to http://test.host/blog/posts/279-something-new
4472
+ Completed 302 Found in 9ms
4473
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4474
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["username", "bodacious"]]
4475
+ Processing by Blogit::PostsController#update as HTML
4476
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4477
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 452], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["title", "Something new"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00]]
4478
+ Redirected to http://test.host/blog/posts/280-something-new
4479
+ Completed 302 Found in 9ms
4480
+ Processing by Blogit::PostsController#update as HTML
4481
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4482
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4483
+ Redirected to http://test.host/blog/
4484
+ Completed 302 Found in 1ms
4485
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["username", "bodacious"]]
4486
+ Processing by Blogit::PostsController#show as HTML
4487
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4488
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
4489
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4490
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["username", "bodacious"]]
4491
+ Processing by Blogit::PostsController#destroy as HTML
4492
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4493
+ Redirected to http://test.host/blog/posts
4494
+ Completed 302 Found in 1ms
4495
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4496
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["username", "bodacious"]]
4497
+ Processing by Blogit::PostsController#destroy as HTML
4498
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4499
+ Redirected to http://test.host/blog/posts
4500
+ Completed 302 Found in 42ms
4501
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4502
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["username", "bodacious"]]
4503
+ Processing by Blogit::PostsController#destroy as HTML
4504
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4505
+ Redirected to http://test.host/blog/posts
4506
+ Completed 302 Found in 1ms
4507
+ Processing by Blogit::PostsController#destroy as HTML
4508
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4509
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4510
+ Redirected to http://test.host/blog/
4511
+ Completed 302 Found in 1ms
4512
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["username", "bodacious"]]
4513
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 457], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00]]
4514
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["username", "bodacious"]]
4515
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 458], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00]]
4516
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["username", "bodacious"]]
4517
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 459], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00]]
4518
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["username", "bodacious"]]
4519
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 460], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00]]
4520
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["username", "bodacious"]]
4521
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 461], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00]]
4522
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["username", "bodacious"]]
4523
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 462], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00]]
4524
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["username", "bodacious"]]
4525
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 463], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00]]
4526
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["username", "Jeronimo"]]
4527
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 464 LIMIT 1
4528
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:23 UTC +00:00], ["username", "Jeronimo"]]
4529
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 465 LIMIT 1
4530
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" 
4531
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 254 AND "taggings"."taggable_type" = 'Blogit::Post'
4532
+ SQL (0.1ms) 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" = 254 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4533
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 254]]
4534
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 255 AND "taggings"."taggable_type" = 'Blogit::Post'
4535
+ SQL (0.1ms) 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" = 255 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4536
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 255]]
4537
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 256 AND "taggings"."taggable_type" = 'Blogit::Post'
4538
+ SQL (0.1ms) 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" = 256 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4539
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 256]]
4540
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 257 AND "taggings"."taggable_type" = 'Blogit::Post'
4541
+ SQL (0.1ms) 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" = 257 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4542
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 257]]
4543
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 258 AND "taggings"."taggable_type" = 'Blogit::Post'
4544
+ SQL (0.1ms) 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" = 258 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4545
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 258]]
4546
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 259 AND "taggings"."taggable_type" = 'Blogit::Post'
4547
+ SQL (0.1ms) 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" = 259 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4548
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 259]]
4549
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 260 AND "taggings"."taggable_type" = 'Blogit::Post'
4550
+ SQL (0.1ms) 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" = 260 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4551
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 260]]
4552
+ ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 261 AND "taggings"."taggable_type" = 'Blogit::Post'
4553
+ SQL (0.1ms) 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" = 261 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4554
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 261]]
4555
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 262 AND "taggings"."taggable_type" = 'Blogit::Post'
4556
+ SQL (0.1ms) 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" = 262 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4557
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 262]]
4558
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 263 AND "taggings"."taggable_type" = 'Blogit::Post'
4559
+ SQL (0.1ms) 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" = 263 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4560
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 263]]
4561
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 264 AND "taggings"."taggable_type" = 'Blogit::Post'
4562
+ SQL (0.1ms) 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" = 264 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4563
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 264]]
4564
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 265 AND "taggings"."taggable_type" = 'Blogit::Post'
4565
+ SQL (0.1ms) 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" = 265 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4566
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 265]]
4567
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 266 AND "taggings"."taggable_type" = 'Blogit::Post'
4568
+ SQL (0.1ms) 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" = 266 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4569
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 266]]
4570
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 267 AND "taggings"."taggable_type" = 'Blogit::Post'
4571
+ SQL (0.1ms) 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" = 267 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4572
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 267]]
4573
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 268 AND "taggings"."taggable_type" = 'Blogit::Post'
4574
+ SQL (0.1ms) 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" = 268 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4575
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 268]]
4576
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 269 AND "taggings"."taggable_type" = 'Blogit::Post'
4577
+ SQL (0.1ms) 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" = 269 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4578
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 269]]
4579
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 270 AND "taggings"."taggable_type" = 'Blogit::Post'
4580
+ SQL (0.1ms) 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" = 270 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4581
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 270]]
4582
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 271 AND "taggings"."taggable_type" = 'Blogit::Post'
4583
+ SQL (0.1ms) 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" = 271 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4584
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 271]]
4585
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 272 AND "taggings"."taggable_type" = 'Blogit::Post'
4586
+ SQL (0.1ms) 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" = 272 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4587
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 272]]
4588
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 273 AND "taggings"."taggable_type" = 'Blogit::Post'
4589
+ SQL (0.1ms) 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" = 273 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4590
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 273]]
4591
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 274 AND "taggings"."taggable_type" = 'Blogit::Post'
4592
+ SQL (0.1ms) 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" = 274 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4593
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 274]]
4594
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 275 AND "taggings"."taggable_type" = 'Blogit::Post'
4595
+ SQL (0.1ms) 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" = 275 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4596
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 275]]
4597
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 276 AND "taggings"."taggable_type" = 'Blogit::Post'
4598
+ SQL (0.1ms) 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" = 276 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4599
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 276]]
4600
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 277 AND "taggings"."taggable_type" = 'Blogit::Post'
4601
+ SQL (0.1ms) 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" = 277 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4602
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 277]]
4603
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 278 AND "taggings"."taggable_type" = 'Blogit::Post'
4604
+ SQL (0.1ms) 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" = 278 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4605
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 278]]
4606
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 279 AND "taggings"."taggable_type" = 'Blogit::Post'
4607
+ SQL (0.1ms) 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" = 279 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4608
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 279]]
4609
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 280 AND "taggings"."taggable_type" = 'Blogit::Post'
4610
+ SQL (0.1ms) 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" = 280 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4611
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 280]]
4612
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 281 AND "taggings"."taggable_type" = 'Blogit::Post'
4613
+ SQL (0.1ms) 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" = 281 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4614
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 281]]
4615
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 282 AND "taggings"."taggable_type" = 'Blogit::Post'
4616
+ SQL (0.1ms) 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" = 282 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4617
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 282]]
4618
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 283 AND "taggings"."taggable_type" = 'Blogit::Post'
4619
+ SQL (0.1ms) 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" = 283 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4620
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 283]]
4621
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 284 AND "taggings"."taggable_type" = 'Blogit::Post'
4622
+ SQL (0.1ms) 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" = 284 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4623
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 284]]
4624
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 285 AND "taggings"."taggable_type" = 'Blogit::Post'
4625
+ SQL (0.1ms) 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" = 285 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4626
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 285]]
4627
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 286 AND "taggings"."taggable_type" = 'Blogit::Post'
4628
+ SQL (0.1ms) 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" = 286 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4629
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 286]]
4630
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 287 AND "taggings"."taggable_type" = 'Blogit::Post'
4631
+ SQL (0.1ms) 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" = 287 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
4632
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 287]]
4633
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["username", "bodacious"]]
4634
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 466], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00]]
4635
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["username", "bodacious"]]
4636
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 467], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 25 Dec 2011 16:41:24 UTC +00:00]]
4637
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["username", "bodacious"]]
4638
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 468], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 24 Dec 2011 16:41:24 UTC +00:00]]
4639
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["username", "bodacious"]]
4640
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 469], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 23 Dec 2011 16:41:24 UTC +00:00]]
4641
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["username", "bodacious"]]
4642
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 470], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 22 Dec 2011 16:41:24 UTC +00:00]]
4643
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["username", "bodacious"]]
4644
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 471], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 21 Dec 2011 16:41:24 UTC +00:00]]
4645
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["username", "bodacious"]]
4646
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 472], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 20 Dec 2011 16:41:24 UTC +00:00]]
4647
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["username", "bodacious"]]
4648
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 473], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 19 Dec 2011 16:41:24 UTC +00:00]]
4649
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["username", "bodacious"]]
4650
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 474], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 18 Dec 2011 16:41:24 UTC +00:00]]
4651
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["username", "bodacious"]]
4652
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 475], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 17 Dec 2011 16:41:24 UTC +00:00]]
4653
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["username", "bodacious"]]
4654
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 476], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 16 Dec 2011 16:41:24 UTC +00:00]]
4655
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["username", "bodacious"]]
4656
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 477], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 15 Dec 2011 16:41:24 UTC +00:00]]
4657
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["username", "bodacious"]]
4658
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 478], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 14 Dec 2011 16:41:24 UTC +00:00]]
4659
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["username", "bodacious"]]
4660
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 479], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 13 Dec 2011 16:41:24 UTC +00:00]]
4661
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["password", "password"], ["updated_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["username", "bodacious"]]
4662
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 480], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 26 Dec 2011 16:41:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 12 Dec 2011 16:41:24 UTC +00:00]]
4663
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0
4664
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1
4665
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count
4666
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count