blogit 0.4.1 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -52,7 +52,8 @@ you can set various configuration options. Please [read the documentation](http:
52
52
 
53
53
  we'll also throw in:
54
54
 
55
- * An XML Sitemap located at `/blog/sitemap.xml`
55
+ * An XML Sitemap located at `/blog/posts.xml`
56
+ * An RSS feed located at `/blog/posts.rss`
56
57
  * Page Caching and Sweeping
57
58
 
58
59
  ## Issues
@@ -19,6 +19,9 @@ module Blogit
19
19
  format.html {
20
20
  @posts = Post.for_index(params[:page])
21
21
  }
22
+ format.rss {
23
+ @posts = Post.order('created_at DESC')
24
+ }
22
25
  end
23
26
  end
24
27
 
@@ -0,0 +1,30 @@
1
+ xml.instruct!
2
+ xml.rss "version" => "2.0", "xmlns:dc" => "htt://purl.org/dc/elements/1.1/" do
3
+ xml.channel do
4
+
5
+ xml.title blogit_conf.rss_feed_title
6
+
7
+ xml.description blogit_conf.rss_feed_description
8
+
9
+ xml.pubDate CGI.rfc1123_date @posts.first.try(:updated_at)
10
+
11
+ xml.link root_url
12
+
13
+ xml.lastBuildDate CGI.rfc1123_date @posts.first.try(:updated_at)
14
+
15
+ xml.language blogit_conf.rss_feed_language
16
+
17
+ @posts.each do |post|
18
+
19
+ xml.item do
20
+ xml.title post.title
21
+ xml.description format_content(truncate(post.body, length: 400)).html_safe
22
+ xml.link post_url(post)
23
+ xml.pubDate CGI.rfc1123_date(post.updated_at)
24
+ xml.guid post_url(post)
25
+ xml.author post.blogger_display_name
26
+ end
27
+
28
+ end
29
+ end
30
+ end
@@ -1,11 +1,9 @@
1
1
  Blogit::Engine.routes.draw do
2
2
 
3
- resources :posts, except: [:index] do
3
+ resources :posts do
4
4
  resources :comments, only: [:create, :destroy]
5
5
  end
6
6
 
7
- match "sitemap.xml" => 'posts#index', format: :xml
8
-
9
7
  match "page/:page" => "posts#index"
10
8
 
11
9
  match "posts/tagged/:tag" => 'posts#tagged', as: :tagged_blog_posts
@@ -59,8 +59,22 @@ module Blogit
59
59
  attr_accessor :redcarpet_options
60
60
 
61
61
  # Should the controllers cache the blog pages as HTML?
62
+ # Defaults to false
62
63
  attr_accessor :cache_pages
63
64
 
65
+ # The title of the RSS feed for the blog posts
66
+ # Defaults to "[Application Name] Blog Posts"
67
+ attr_accessor :rss_feed_title
68
+
69
+ # The description of the RSS feed for the blog posts
70
+ # Defaults to "[Application Name] Blog Posts"
71
+ attr_accessor :rss_feed_description
72
+
73
+ # The default language of the RSS feed
74
+ # Defaults to 'en'
75
+ attr_accessor :rss_feed_language
76
+
77
+
64
78
  REDCARPET_OPTIONS = {
65
79
  hard_wrap: true,
66
80
  filter_html: true,
@@ -84,6 +98,9 @@ module Blogit
84
98
  @cache_pages = false
85
99
  @default_parser = :markdown
86
100
  @highlight_code_syntax = true
101
+ @rss_feed_title = "#{Rails.application.engine_name.titleize} Blog Posts"
102
+ @rss_feed_description = "#{Rails.application.engine_name.titleize} Blog Posts"
103
+ @rss_feed_language = "en"
87
104
  @redcarpet_options = REDCARPET_OPTIONS
88
105
  end
89
106
 
@@ -1,3 +1,3 @@
1
1
  module Blogit
2
- VERSION = "0.4.1"
2
+ VERSION = "0.4.2"
3
3
  end
File without changes
@@ -0,0 +1,7 @@
1
+  (0.3ms) select sqlite_version(*)
2
+  (0.0ms) select sqlite_version(*)
3
+  (63.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4
+  (0.0ms) PRAGMA index_list("schema_migrations")
5
+  (3.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6
+  (0.1ms) SELECT version FROM "schema_migrations"
7
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
@@ -0,0 +1,1140 @@
1
+ Processing by Blogit::PostsController#index as HTML
2
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
3
+ Completed 200 OK in 65ms (Views: 64.9ms | ActiveRecord: 0.0ms)
4
+ Processing by Blogit::PostsController#index as HTML
5
+ Parameters: {"page"=>"2", "use_route"=>"blogit"}
6
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
7
+ Processing by Blogit::PostsController#index as XML
8
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
9
+ Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.0ms)
10
+ Processing by Blogit::PostsController#new as HTML
11
+ Parameters: {"use_route"=>"blogit"}
12
+ Completed 500 Internal Server Error in 0ms
13
+ Processing by Blogit::PostsController#edit as HTML
14
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
15
+ Completed 500 Internal Server Error in 0ms
16
+ Processing by Blogit::PostsController#update as HTML
17
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
18
+ Completed 500 Internal Server Error in 1ms
19
+ Processing by Blogit::PostsController#destroy as HTML
20
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
21
+ Completed 500 Internal Server Error in 0ms
22
+ Processing by Blogit::PostsController#index as HTML
23
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
24
+ Completed 200 OK in 66ms (Views: 65.7ms | ActiveRecord: 0.0ms)
25
+ Processing by Blogit::PostsController#index as HTML
26
+ Parameters: {"page"=>"2", "use_route"=>"blogit"}
27
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
28
+ Processing by Blogit::PostsController#index as XML
29
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
30
+ Completed 200 OK in 17ms (Views: 17.3ms | ActiveRecord: 0.0ms)
31
+ Processing by Blogit::PostsController#new as HTML
32
+ Parameters: {"use_route"=>"blogit"}
33
+ Completed 500 Internal Server Error in 0ms
34
+ Processing by Blogit::PostsController#edit as HTML
35
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
36
+ Completed 500 Internal Server Error in 0ms
37
+ Processing by Blogit::PostsController#update as HTML
38
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
39
+ Completed 500 Internal Server Error in 1ms
40
+ Processing by Blogit::PostsController#destroy as HTML
41
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
42
+ Completed 500 Internal Server Error in 0ms
43
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
44
+ Migrating to CreateUsers (20110814091304)
45
+  (0.0ms) select sqlite_version(*)
46
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "password" varchar(255), "created_at" datetime, "updated_at" datetime) 
47
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110814091304')
48
+ Migrating to CreatePeople (20110819103335)
49
+  (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
50
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110819103335')
51
+ Migrating to CreateBlogPosts (20111118222920)
52
+  (0.3ms) CREATE TABLE "blog_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" text NOT NULL, "blogger_id" integer, "blogger_type" varchar(255), "comments_count" integer DEFAULT 0 NOT NULL, "created_at" datetime, "updated_at" datetime) 
53
+  (0.0ms) PRAGMA index_list("blog_posts")
54
+  (0.1ms) CREATE INDEX "index_blog_posts_on_blogger_type_and_blogger_id" ON "blog_posts" ("blogger_type", "blogger_id")
55
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111118222920')
56
+ Migrating to CreateBlogComments (20111118222921)
57
+  (0.3ms) CREATE TABLE "blog_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "email" varchar(255) NOT NULL, "website" varchar(255), "body" text NOT NULL, "post_id" integer NOT NULL, "state" varchar(255), "created_at" datetime, "updated_at" datetime) 
58
+  (0.1ms) PRAGMA index_list("blog_comments")
59
+  (0.1ms) CREATE INDEX "index_blog_comments_on_post_id" ON "blog_comments" ("post_id")
60
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111118222921')
61
+ Migrating to ActsAsTaggableOnMigration (20111118222922)
62
+  (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
63
+  (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "tagger_id" integer, "tagger_type" varchar(255), "context" varchar(255), "created_at" datetime)
64
+  (0.0ms) PRAGMA index_list("taggings")
65
+  (0.1ms) CREATE INDEX "index_taggings_on_tag_id" ON "taggings" ("tag_id")
66
+  (0.0ms) PRAGMA index_list("taggings")
67
+  (0.0ms) PRAGMA index_info('index_taggings_on_tag_id')
68
+  (0.1ms) CREATE INDEX "index_taggings_on_taggable_id_and_taggable_type_and_context" ON "taggings" ("taggable_id", "taggable_type", "context")
69
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111118222922')
70
+  (0.3ms) select sqlite_version(*)
71
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
72
+  (0.0ms) PRAGMA index_list("blog_comments")
73
+  (0.0ms) PRAGMA index_info('index_blog_comments_on_post_id')
74
+  (0.0ms) PRAGMA index_list("blog_posts")
75
+  (0.0ms) PRAGMA index_info('index_blog_posts_on_blogger_type_and_blogger_id')
76
+  (0.0ms) PRAGMA index_list("people")
77
+  (0.0ms) PRAGMA index_list("taggings")
78
+  (0.0ms) PRAGMA index_info('index_taggings_on_taggable_id_and_taggable_type_and_context')
79
+  (0.0ms) PRAGMA index_info('index_taggings_on_tag_id')
80
+  (0.0ms) PRAGMA index_list("tags")
81
+  (0.0ms) PRAGMA index_list("users")
82
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
83
+ SQL (56.1ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["username", "bodacious"]]
84
+ SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 1], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00]]
85
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
86
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1
87
+ Processing by Blogit::CommentsController#create as JS
88
+ Parameters: {"post_id"=>"1", "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"}
89
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]]
90
+ SQL (0.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", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["website", "http://gavinmorrice.com"]]
91
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1
92
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1
93
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.325325' WHERE "blog_posts"."id" = 1
94
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
95
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.5ms)
96
+ Completed 200 OK in 171ms (Views: 60.0ms | ActiveRecord: 1.3ms)
97
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1
98
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
99
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1
100
+ Processing by Blogit::CommentsController#create as HTML
101
+ Parameters: {"post_id"=>"1", "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"}
102
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]]
103
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["website", "http://gavinmorrice.com"]]
104
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1
105
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1
106
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.486278' WHERE "blog_posts"."id" = 1
107
+ Blogit::Post Load (0.0ms) SELECT "blog_posts".* FROM "blog_posts"
108
+ Redirected to http://test.host/blog/posts/1-tis-is-a-blog-post-title
109
+ Completed 302 Found in 9ms
110
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1
111
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
112
+ Processing by Blogit::CommentsController#create as HTML
113
+ Parameters: {"post_id"=>"1", "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"}
114
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]]
115
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["website", "http://gavinmorrice.com"]]
116
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1
117
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1
118
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.498874' WHERE "blog_posts"."id" = 1
119
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
120
+ Redirected to http://test.host/blog/posts/1-tis-is-a-blog-post-title
121
+ Completed 302 Found in 10ms
122
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
123
+ Processing by Blogit::CommentsController#create as HTML
124
+ Parameters: {"post_id"=>"1", "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"}
125
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]]
126
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["website", "http://gavinmorrice.com"]]
127
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1
128
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1
129
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.512032' WHERE "blog_posts"."id" = 1
130
+ Blogit::Post Load (0.0ms) SELECT "blog_posts".* FROM "blog_posts" 
131
+ Redirected to http://test.host/blog/posts/1-tis-is-a-blog-post-title
132
+ Completed 302 Found in 11ms
133
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
134
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["website", "http://gavinmorrice.com"]]
135
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1
136
+ SQL (0.4ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.524574' WHERE "blog_posts"."id" = 1
137
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
138
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
139
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 1]]
140
+  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1
141
+ Processing by Blogit::CommentsController#destroy as JS
142
+ Parameters: {"id"=>"5", "post_id"=>"1", "use_route"=>"blogit"}
143
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]]
144
+ Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 1 AND "blog_comments"."id" = ? LIMIT 1 [["id", "5"]]
145
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1
146
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 1
147
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 5]]
148
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.540087' WHERE "blog_posts"."id" = 1
149
+ Completed 200 OK in 43ms (Views: 36.0ms | ActiveRecord: 0.8ms)
150
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 1]]
151
+  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1
152
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
153
+ SQL (0.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", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["website", "http://gavinmorrice.com"]]
154
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1
155
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.587671' WHERE "blog_posts"."id" = 1
156
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
157
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
158
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 1]]
159
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1
160
+ Processing by Blogit::CommentsController#destroy as HTML
161
+ Parameters: {"id"=>"6", "post_id"=>"1", "use_route"=>"blogit"}
162
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]]
163
+ Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 1 AND "blog_comments"."id" = ? LIMIT 1 [["id", "6"]]
164
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1
165
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 1
166
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 6]]
167
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.740055' WHERE "blog_posts"."id" = 1
168
+ Redirected to http://test.host/blog/posts/1-tis-is-a-blog-post-title
169
+ Completed 302 Found in 7ms
170
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 1]]
171
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1
172
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
173
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["website", "http://gavinmorrice.com"]]
174
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1
175
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.750174' WHERE "blog_posts"."id" = 1
176
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
177
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
178
+ Processing by Blogit::CommentsController#destroy as HTML
179
+ Parameters: {"id"=>"7", "post_id"=>"1", "use_route"=>"blogit"}
180
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]]
181
+ Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 1 AND "blog_comments"."id" = ? LIMIT 1 [["id", "7"]]
182
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1
183
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 1
184
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 7]]
185
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.759424' WHERE "blog_posts"."id" = 1
186
+ Redirected to http://test.host/blog/posts/1-tis-is-a-blog-post-title
187
+ Completed 302 Found in 10ms
188
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
189
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["website", "http://gavinmorrice.com"]]
190
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1
191
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.771221' WHERE "blog_posts"."id" = 1
192
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
193
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" 
194
+ Processing by Blogit::CommentsController#destroy as HTML
195
+ Parameters: {"id"=>"8", "post_id"=>"1", "use_route"=>"blogit"}
196
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
197
+ Redirected to http://test.host/blog/
198
+ Completed 302 Found in 1ms
199
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" 
200
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
201
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["website", "http://gavinmorrice.com"]]
202
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1
203
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.785387' WHERE "blog_posts"."id" = 1
204
+ Blogit::Post Load (0.0ms) SELECT "blog_posts".* FROM "blog_posts"
205
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" 
206
+ Processing by Blogit::CommentsController#destroy as HTML
207
+ Parameters: {"id"=>"9", "post_id"=>"1", "use_route"=>"blogit"}
208
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
209
+ Redirected to http://test.host/blog/
210
+ Completed 302 Found in 1ms
211
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" 
212
+ Processing by Blogit::PostsController#index as HTML
213
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
214
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
215
+ Processing by Blogit::PostsController#index as HTML
216
+ Parameters: {"page"=>"2", "use_route"=>"blogit"}
217
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
218
+ Processing by Blogit::PostsController#index as XML
219
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
220
+ Completed 200 OK in 18ms (Views: 18.3ms | ActiveRecord: 0.0ms)
221
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
222
+ Processing by Blogit::PostsController#new as HTML
223
+ Parameters: {"use_route"=>"blogit"}
224
+ Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.0ms)
225
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
226
+ Processing by Blogit::PostsController#new as HTML
227
+ Parameters: {"use_route"=>"blogit"}
228
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
229
+ Processing by Blogit::PostsController#new as HTML
230
+ Parameters: {"use_route"=>"blogit"}
231
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
232
+ Redirected to http://test.host/blog/
233
+ Completed 302 Found in 1ms
234
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
235
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["username", "bodacious"]]
236
+ Processing by Blogit::PostsController#create as HTML
237
+ 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"}
238
+ Redirected to http://test.host/blog/posts
239
+ Completed 302 Found in 1ms
240
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
241
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["username", "bodacious"]]
242
+ Processing by Blogit::PostsController#edit as HTML
243
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
244
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
245
+ Processing by Blogit::PostsController#edit as HTML
246
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
247
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
248
+ Redirected to http://test.host/blog/
249
+ Completed 302 Found in 1ms
250
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
251
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["username", "bodacious"]]
252
+ Processing by Blogit::PostsController#update as HTML
253
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
254
+ Redirected to http://test.host/blog/posts
255
+ Completed 302 Found in 1ms
256
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
257
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["username", "bodacious"]]
258
+ Processing by Blogit::PostsController#update as HTML
259
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
260
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 5], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00]]
261
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
262
+ Redirected to http://test.host/blog/posts/2-something-new
263
+ Completed 302 Found in 9ms
264
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1
265
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["username", "bodacious"]]
266
+ Processing by Blogit::PostsController#update as HTML
267
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
268
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 6], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00]]
269
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
270
+ Redirected to http://test.host/blog/posts/3-something-new
271
+ Completed 302 Found in 10ms
272
+ Processing by Blogit::PostsController#update as HTML
273
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
274
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
275
+ Redirected to http://test.host/blog/
276
+ Completed 302 Found in 1ms
277
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["username", "bodacious"]]
278
+ Processing by Blogit::PostsController#show as HTML
279
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
280
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
281
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
282
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["username", "bodacious"]]
283
+ Processing by Blogit::PostsController#destroy as HTML
284
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
285
+ Redirected to http://test.host/blog/posts
286
+ Completed 302 Found in 1ms
287
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1
288
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["username", "bodacious"]]
289
+ Processing by Blogit::PostsController#destroy as HTML
290
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
291
+ Redirected to http://test.host/blog/posts
292
+ Completed 302 Found in 45ms
293
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
294
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
295
+ Processing by Blogit::PostsController#destroy as HTML
296
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
297
+ Redirected to http://test.host/blog/posts
298
+ Completed 302 Found in 1ms
299
+ Processing by Blogit::PostsController#destroy as HTML
300
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
301
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
302
+ Redirected to http://test.host/blog/
303
+ Completed 302 Found in 1ms
304
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
305
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 11], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00]]
306
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
307
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
308
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 12], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00]]
309
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
310
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
311
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 13], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00]]
312
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
313
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
314
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 14], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00]]
315
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
316
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
317
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 15], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00]]
318
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
319
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
320
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 16], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00]]
321
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
322
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
323
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 17], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00]]
324
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
325
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "Jeronimo"]]
326
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 18 LIMIT 1
327
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "Jeronimo"]]
328
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 19 LIMIT 1
329
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
330
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Blogit::Post'
331
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
332
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1]]
333
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Blogit::Post'
334
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
335
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 2]]
336
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Blogit::Post'
337
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
338
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 3]]
339
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Blogit::Post'
340
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
341
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 4]]
342
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Blogit::Post'
343
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
344
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 5]]
345
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Blogit::Post'
346
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
347
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 6]]
348
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Blogit::Post'
349
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
350
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 7]]
351
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Blogit::Post'
352
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
353
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 8]]
354
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Blogit::Post'
355
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
356
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 9]]
357
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Blogit::Post'
358
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
359
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 10]]
360
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
361
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 20], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00]]
362
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
363
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
364
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 21], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 28 Dec 2011 16:46:20 UTC +00:00]]
365
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
366
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
367
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 22], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 27 Dec 2011 16:46:20 UTC +00:00]]
368
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
369
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
370
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 23], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:46:20 UTC +00:00]]
371
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
372
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
373
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 24], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 25 Dec 2011 16:46:20 UTC +00:00]]
374
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
375
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
376
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 25], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 24 Dec 2011 16:46:20 UTC +00:00]]
377
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
378
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
379
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 26], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 23 Dec 2011 16:46:20 UTC +00:00]]
380
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
381
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
382
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 27], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 22 Dec 2011 16:46:20 UTC +00:00]]
383
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
384
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
385
+ SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 28], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 21 Dec 2011 16:46:20 UTC +00:00]]
386
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
387
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
388
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 29], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 20 Dec 2011 16:46:20 UTC +00:00]]
389
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
390
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
391
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 30], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 19 Dec 2011 16:46:20 UTC +00:00]]
392
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" 
393
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
394
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 31], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 18 Dec 2011 16:46:20 UTC +00:00]]
395
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
396
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
397
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 32], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 17 Dec 2011 16:46:20 UTC +00:00]]
398
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
399
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
400
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 33], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 16 Dec 2011 16:46:20 UTC +00:00]]
401
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
402
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]]
403
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 34], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 15 Dec 2011 16:46:20 UTC +00:00]]
404
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
405
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0
406
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1
407
+  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count
408
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count 
409
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
410
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11
411
+ Processing by Blogit::CommentsController#create as JS
412
+ Parameters: {"post_id"=>"11", "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"}
413
+ Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "11"]]
414
+ SQL (13.8ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 11], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["website", "http://gavinmorrice.com"]]
415
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1
416
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11
417
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.369765' WHERE "blog_posts"."id" = 11
418
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
419
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (11.7ms)
420
+ Completed 200 OK in 302ms (Views: 67.7ms | ActiveRecord: 14.8ms)
421
+  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11
422
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
423
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11
424
+ Processing by Blogit::CommentsController#create as HTML
425
+ Parameters: {"post_id"=>"11", "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"}
426
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "11"]]
427
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 11], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["website", "http://gavinmorrice.com"]]
428
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1
429
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11
430
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.604804' WHERE "blog_posts"."id" = 11
431
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
432
+ Redirected to http://test.host/blog/posts/11-tis-is-a-blog-post-title
433
+ Completed 302 Found in 52ms
434
+  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11
435
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
436
+ Processing by Blogit::CommentsController#create as HTML
437
+ Parameters: {"post_id"=>"11", "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"}
438
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "11"]]
439
+ SQL (0.7ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 11], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["website", "http://gavinmorrice.com"]]
440
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1
441
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11
442
+ SQL (0.4ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.662337' WHERE "blog_posts"."id" = 11
443
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" 
444
+ Redirected to http://test.host/blog/posts/11-tis-is-a-blog-post-title
445
+ Completed 302 Found in 18ms
446
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
447
+ Processing by Blogit::CommentsController#create as HTML
448
+ Parameters: {"post_id"=>"11", "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"}
449
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "11"]]
450
+ SQL (0.5ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 11], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["website", "http://gavinmorrice.com"]]
451
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1
452
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11
453
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.683122' WHERE "blog_posts"."id" = 11
454
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
455
+ Redirected to http://test.host/blog/posts/11-tis-is-a-blog-post-title
456
+ Completed 302 Found in 17ms
457
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
458
+ SQL (0.5ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 11], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["website", "http://gavinmorrice.com"]]
459
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11
460
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.701694' WHERE "blog_posts"."id" = 11
461
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
462
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
463
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 11]]
464
+  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11
465
+ Processing by Blogit::CommentsController#destroy as JS
466
+ Parameters: {"id"=>"14", "post_id"=>"11", "use_route"=>"blogit"}
467
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "11"]]
468
+ Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 11 AND "blog_comments"."id" = ? LIMIT 1 [["id", "14"]]
469
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1
470
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 11
471
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 14]]
472
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.715779' WHERE "blog_posts"."id" = 11
473
+ Completed 200 OK in 10ms (Views: 1.4ms | ActiveRecord: 0.9ms)
474
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 11]]
475
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11
476
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
477
+ SQL (0.7ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 11], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["website", "http://gavinmorrice.com"]]
478
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11
479
+ SQL (0.4ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.730245' WHERE "blog_posts"."id" = 11
480
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" 
481
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
482
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 11]]
483
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11
484
+ Processing by Blogit::CommentsController#destroy as HTML
485
+ Parameters: {"id"=>"15", "post_id"=>"11", "use_route"=>"blogit"}
486
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "11"]]
487
+ Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 11 AND "blog_comments"."id" = ? LIMIT 1 [["id", "15"]]
488
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1
489
+ SQL (0.3ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 11
490
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 15]]
491
+ SQL (0.4ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.743624' WHERE "blog_posts"."id" = 11
492
+ Redirected to http://test.host/blog/posts/11-tis-is-a-blog-post-title
493
+ Completed 302 Found in 9ms
494
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 11]]
495
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11
496
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
497
+ SQL (0.5ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 11], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["website", "http://gavinmorrice.com"]]
498
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11
499
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.754307' WHERE "blog_posts"."id" = 11
500
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
501
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1
502
+ Processing by Blogit::CommentsController#destroy as HTML
503
+ Parameters: {"id"=>"16", "post_id"=>"11", "use_route"=>"blogit"}
504
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "11"]]
505
+ Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 11 AND "blog_comments"."id" = ? LIMIT 1 [["id", "16"]]
506
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1
507
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 11
508
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 16]]
509
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.765355' WHERE "blog_posts"."id" = 11
510
+ Redirected to http://test.host/blog/posts/11-tis-is-a-blog-post-title
511
+ Completed 302 Found in 8ms
512
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
513
+ SQL (0.5ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 11], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["website", "http://gavinmorrice.com"]]
514
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11
515
+ SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.775731' WHERE "blog_posts"."id" = 11
516
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" 
517
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
518
+ Processing by Blogit::CommentsController#destroy as HTML
519
+ Parameters: {"id"=>"17", "post_id"=>"11", "use_route"=>"blogit"}
520
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
521
+ Redirected to http://test.host/blog/
522
+ Completed 302 Found in 1ms
523
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
524
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
525
+ SQL (0.5ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 11], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["website", "http://gavinmorrice.com"]]
526
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11
527
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.788661' WHERE "blog_posts"."id" = 11
528
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
529
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
530
+ Processing by Blogit::CommentsController#destroy as HTML
531
+ Parameters: {"id"=>"18", "post_id"=>"11", "use_route"=>"blogit"}
532
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
533
+ Redirected to http://test.host/blog/
534
+ Completed 302 Found in 1ms
535
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
536
+ Processing by Blogit::PostsController#index as HTML
537
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
538
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
539
+ Processing by Blogit::PostsController#index as HTML
540
+ Parameters: {"page"=>"2", "use_route"=>"blogit"}
541
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
542
+ Processing by Blogit::PostsController#index as XML
543
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
544
+ Completed 200 OK in 21ms (Views: 21.3ms | ActiveRecord: 0.0ms)
545
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
546
+ Processing by Blogit::PostsController#new as HTML
547
+ Parameters: {"use_route"=>"blogit"}
548
+ Completed 200 OK in 44ms (Views: 37.4ms | ActiveRecord: 0.0ms)
549
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
550
+ Processing by Blogit::PostsController#new as HTML
551
+ Parameters: {"use_route"=>"blogit"}
552
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
553
+ Processing by Blogit::PostsController#new as HTML
554
+ Parameters: {"use_route"=>"blogit"}
555
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
556
+ Redirected to http://test.host/blog/
557
+ Completed 302 Found in 1ms
558
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
559
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["username", "bodacious"]]
560
+ Processing by Blogit::PostsController#create as HTML
561
+ 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"}
562
+ Redirected to http://test.host/blog/posts
563
+ Completed 302 Found in 1ms
564
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
565
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["username", "bodacious"]]
566
+ Processing by Blogit::PostsController#edit as HTML
567
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
568
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
569
+ Processing by Blogit::PostsController#edit as HTML
570
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
571
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
572
+ Redirected to http://test.host/blog/
573
+ Completed 302 Found in 1ms
574
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
575
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["username", "bodacious"]]
576
+ Processing by Blogit::PostsController#update as HTML
577
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
578
+ Redirected to http://test.host/blog/posts
579
+ Completed 302 Found in 2ms
580
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
581
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["username", "bodacious"]]
582
+ Processing by Blogit::PostsController#update as HTML
583
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
584
+ SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 38], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00]]
585
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"
586
+ Redirected to http://test.host/blog/posts/26-something-new
587
+ Completed 302 Found in 16ms
588
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1
589
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["username", "bodacious"]]
590
+ Processing by Blogit::PostsController#update as HTML
591
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
592
+ SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 39], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00]]
593
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"
594
+ Redirected to http://test.host/blog/posts/27-something-new
595
+ Completed 302 Found in 16ms
596
+ Processing by Blogit::PostsController#update as HTML
597
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
598
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
599
+ Redirected to http://test.host/blog/
600
+ Completed 302 Found in 1ms
601
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["username", "bodacious"]]
602
+ Processing by Blogit::PostsController#show as HTML
603
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
604
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
605
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1
606
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["username", "bodacious"]]
607
+ Processing by Blogit::PostsController#destroy as HTML
608
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
609
+ Redirected to http://test.host/blog/posts
610
+ Completed 302 Found in 1ms
611
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
612
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
613
+ Processing by Blogit::PostsController#destroy as HTML
614
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
615
+ Redirected to http://test.host/blog/posts
616
+ Completed 302 Found in 11ms
617
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
618
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
619
+ Processing by Blogit::PostsController#destroy as HTML
620
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
621
+ Redirected to http://test.host/blog/posts
622
+ Completed 302 Found in 1ms
623
+ Processing by Blogit::PostsController#destroy as HTML
624
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
625
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
626
+ Redirected to http://test.host/blog/
627
+ Completed 302 Found in 1ms
628
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
629
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 44], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00]]
630
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
631
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
632
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 45], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00]]
633
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" 
634
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
635
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 46], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00]]
636
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
637
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
638
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 47], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00]]
639
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" 
640
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
641
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 48], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00]]
642
+ Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts"
643
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
644
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 49], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00]]
645
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
646
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
647
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 50], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00]]
648
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
649
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "Jeronimo"]]
650
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 51 LIMIT 1
651
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "Jeronimo"]]
652
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 52 LIMIT 1
653
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" 
654
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Blogit::Post'
655
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
656
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 11]]
657
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Blogit::Post'
658
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
659
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 12]]
660
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 13 AND "taggings"."taggable_type" = 'Blogit::Post'
661
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 13 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
662
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 13]]
663
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 14 AND "taggings"."taggable_type" = 'Blogit::Post'
664
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 14 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
665
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 14]]
666
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 15 AND "taggings"."taggable_type" = 'Blogit::Post'
667
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 15 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
668
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 15]]
669
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 16 AND "taggings"."taggable_type" = 'Blogit::Post'
670
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 16 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
671
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 16]]
672
+ ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 17 AND "taggings"."taggable_type" = 'Blogit::Post'
673
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 17 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
674
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 17]]
675
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 18 AND "taggings"."taggable_type" = 'Blogit::Post'
676
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 18 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
677
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 18]]
678
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 19 AND "taggings"."taggable_type" = 'Blogit::Post'
679
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 19 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
680
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 19]]
681
+ ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 20 AND "taggings"."taggable_type" = 'Blogit::Post'
682
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 20 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
683
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 20]]
684
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 21 AND "taggings"."taggable_type" = 'Blogit::Post'
685
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 21 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
686
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 21]]
687
+ ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 22 AND "taggings"."taggable_type" = 'Blogit::Post'
688
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 22 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
689
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 22]]
690
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 23 AND "taggings"."taggable_type" = 'Blogit::Post'
691
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 23 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
692
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 23]]
693
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 24 AND "taggings"."taggable_type" = 'Blogit::Post'
694
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 24 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
695
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 24]]
696
+ ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 25 AND "taggings"."taggable_type" = 'Blogit::Post'
697
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 25 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
698
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 25]]
699
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 26 AND "taggings"."taggable_type" = 'Blogit::Post'
700
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 26 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
701
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 26]]
702
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 27 AND "taggings"."taggable_type" = 'Blogit::Post'
703
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 27 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
704
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 27]]
705
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 28 AND "taggings"."taggable_type" = 'Blogit::Post'
706
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 28 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
707
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 28]]
708
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 29 AND "taggings"."taggable_type" = 'Blogit::Post'
709
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 29 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
710
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 29]]
711
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 30 AND "taggings"."taggable_type" = 'Blogit::Post'
712
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 30 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
713
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 30]]
714
+ ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 31 AND "taggings"."taggable_type" = 'Blogit::Post'
715
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 31 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
716
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 31]]
717
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 32 AND "taggings"."taggable_type" = 'Blogit::Post'
718
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 32 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
719
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 32]]
720
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 33 AND "taggings"."taggable_type" = 'Blogit::Post'
721
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 33 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
722
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 33]]
723
+ ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 34 AND "taggings"."taggable_type" = 'Blogit::Post'
724
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 34 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
725
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 34]]
726
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
727
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 53], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00]]
728
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
729
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
730
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 54], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 28 Dec 2011 16:50:46 UTC +00:00]]
731
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
732
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
733
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 55], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 27 Dec 2011 16:50:46 UTC +00:00]]
734
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
735
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
736
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 56], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:50:46 UTC +00:00]]
737
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
738
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
739
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 57], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 25 Dec 2011 16:50:46 UTC +00:00]]
740
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
741
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
742
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 58], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 24 Dec 2011 16:50:46 UTC +00:00]]
743
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
744
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
745
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 59], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 23 Dec 2011 16:50:46 UTC +00:00]]
746
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
747
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
748
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 60], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 22 Dec 2011 16:50:46 UTC +00:00]]
749
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
750
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
751
+ SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 61], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 21 Dec 2011 16:50:46 UTC +00:00]]
752
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
753
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
754
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 62], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 20 Dec 2011 16:50:46 UTC +00:00]]
755
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
756
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
757
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 63], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 19 Dec 2011 16:50:46 UTC +00:00]]
758
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
759
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
760
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 64], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 18 Dec 2011 16:50:46 UTC +00:00]]
761
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
762
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
763
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 65], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 17 Dec 2011 16:50:46 UTC +00:00]]
764
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
765
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
766
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 66], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 16 Dec 2011 16:50:46 UTC +00:00]]
767
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
768
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]]
769
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 67], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 15 Dec 2011 16:50:46 UTC +00:00]]
770
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
771
+ Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0
772
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1
773
+  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count 
774
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count
775
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
776
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35
777
+ Processing by Blogit::CommentsController#create as JS
778
+ Parameters: {"post_id"=>"35", "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"}
779
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "35"]]
780
+ SQL (11.7ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 35], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["website", "http://gavinmorrice.com"]]
781
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1
782
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35
783
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.432627' WHERE "blog_posts"."id" = 35
784
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
785
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (10.2ms)
786
+ Completed 200 OK in 279ms (Views: 67.6ms | ActiveRecord: 12.6ms)
787
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35
788
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
789
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35
790
+ Processing by Blogit::CommentsController#create as HTML
791
+ Parameters: {"post_id"=>"35", "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"}
792
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "35"]]
793
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 35], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["website", "http://gavinmorrice.com"]]
794
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1
795
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35
796
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.654736' WHERE "blog_posts"."id" = 35
797
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
798
+ Redirected to http://test.host/blog/posts/35-tis-is-a-blog-post-title
799
+ Completed 302 Found in 45ms
800
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35
801
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
802
+ Processing by Blogit::CommentsController#create as HTML
803
+ Parameters: {"post_id"=>"35", "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"}
804
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "35"]]
805
+ SQL (0.5ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 35], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["website", "http://gavinmorrice.com"]]
806
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1
807
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35
808
+ SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.704744' WHERE "blog_posts"."id" = 35
809
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
810
+ Redirected to http://test.host/blog/posts/35-tis-is-a-blog-post-title
811
+ Completed 302 Found in 15ms
812
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
813
+ Processing by Blogit::CommentsController#create as HTML
814
+ Parameters: {"post_id"=>"35", "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"}
815
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "35"]]
816
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 35], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["website", "http://gavinmorrice.com"]]
817
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1
818
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35
819
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.722868' WHERE "blog_posts"."id" = 35
820
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
821
+ Redirected to http://test.host/blog/posts/35-tis-is-a-blog-post-title
822
+ Completed 302 Found in 16ms
823
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
824
+ SQL (0.5ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 35], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["website", "http://gavinmorrice.com"]]
825
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35
826
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.740911' WHERE "blog_posts"."id" = 35
827
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
828
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
829
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 35]]
830
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35
831
+ Processing by Blogit::CommentsController#destroy as JS
832
+ Parameters: {"id"=>"23", "post_id"=>"35", "use_route"=>"blogit"}
833
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "35"]]
834
+ Blogit::Comment Load (0.2ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 35 AND "blog_comments"."id" = ? LIMIT 1 [["id", "23"]]
835
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1
836
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 35
837
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 23]]
838
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.754649' WHERE "blog_posts"."id" = 35
839
+ Completed 200 OK in 9ms (Views: 1.5ms | ActiveRecord: 0.9ms)
840
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 35]]
841
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35
842
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
843
+ SQL (0.5ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 35], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["website", "http://gavinmorrice.com"]]
844
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35
845
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.766177' WHERE "blog_posts"."id" = 35
846
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
847
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
848
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 35]]
849
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35
850
+ Processing by Blogit::CommentsController#destroy as HTML
851
+ Parameters: {"id"=>"24", "post_id"=>"35", "use_route"=>"blogit"}
852
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "35"]]
853
+ Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 35 AND "blog_comments"."id" = ? LIMIT 1 [["id", "24"]]
854
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1
855
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 35
856
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 24]]
857
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.777286' WHERE "blog_posts"."id" = 35
858
+ Redirected to http://test.host/blog/posts/35-tis-is-a-blog-post-title
859
+ Completed 302 Found in 8ms
860
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 35]]
861
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35
862
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
863
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 35], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["website", "http://gavinmorrice.com"]]
864
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35
865
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.787801' WHERE "blog_posts"."id" = 35
866
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
867
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
868
+ Processing by Blogit::CommentsController#destroy as HTML
869
+ Parameters: {"id"=>"25", "post_id"=>"35", "use_route"=>"blogit"}
870
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "35"]]
871
+ Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 35 AND "blog_comments"."id" = ? LIMIT 1 [["id", "25"]]
872
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1
873
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 35
874
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 25]]
875
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.797394' WHERE "blog_posts"."id" = 35
876
+ Redirected to http://test.host/blog/posts/35-tis-is-a-blog-post-title
877
+ Completed 302 Found in 8ms
878
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
879
+ SQL (0.5ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 35], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["website", "http://gavinmorrice.com"]]
880
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35
881
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.807742' WHERE "blog_posts"."id" = 35
882
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
883
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
884
+ Processing by Blogit::CommentsController#destroy as HTML
885
+ Parameters: {"id"=>"26", "post_id"=>"35", "use_route"=>"blogit"}
886
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
887
+ Redirected to http://test.host/blog/
888
+ Completed 302 Found in 1ms
889
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
890
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
891
+ SQL (0.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", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 35], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["website", "http://gavinmorrice.com"]]
892
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35
893
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.820385' WHERE "blog_posts"."id" = 35
894
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
895
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
896
+ Processing by Blogit::CommentsController#destroy as HTML
897
+ Parameters: {"id"=>"27", "post_id"=>"35", "use_route"=>"blogit"}
898
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
899
+ Redirected to http://test.host/blog/
900
+ Completed 302 Found in 1ms
901
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
902
+ Processing by Blogit::PostsController#index as HTML
903
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
904
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
905
+ Processing by Blogit::PostsController#index as HTML
906
+ Parameters: {"page"=>"2", "use_route"=>"blogit"}
907
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
908
+ Processing by Blogit::PostsController#index as XML
909
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
910
+ Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms)
911
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
912
+ Processing by Blogit::PostsController#new as HTML
913
+ Parameters: {"use_route"=>"blogit"}
914
+ Completed 200 OK in 43ms (Views: 36.6ms | ActiveRecord: 0.0ms)
915
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
916
+ Processing by Blogit::PostsController#new as HTML
917
+ Parameters: {"use_route"=>"blogit"}
918
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
919
+ Processing by Blogit::PostsController#new as HTML
920
+ Parameters: {"use_route"=>"blogit"}
921
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
922
+ Redirected to http://test.host/blog/
923
+ Completed 302 Found in 1ms
924
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
925
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["username", "bodacious"]]
926
+ Processing by Blogit::PostsController#create as HTML
927
+ 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"}
928
+ Redirected to http://test.host/blog/posts
929
+ Completed 302 Found in 1ms
930
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
931
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["username", "bodacious"]]
932
+ Processing by Blogit::PostsController#edit as HTML
933
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
934
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
935
+ Processing by Blogit::PostsController#edit as HTML
936
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
937
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
938
+ Redirected to http://test.host/blog/
939
+ Completed 302 Found in 2ms
940
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
941
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["username", "bodacious"]]
942
+ Processing by Blogit::PostsController#update as HTML
943
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
944
+ Redirected to http://test.host/blog/posts
945
+ Completed 302 Found in 1ms
946
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
947
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["username", "bodacious"]]
948
+ Processing by Blogit::PostsController#update as HTML
949
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
950
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 71], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00]]
951
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
952
+ Redirected to http://test.host/blog/posts/50-something-new
953
+ Completed 302 Found in 14ms
954
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
955
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["username", "bodacious"]]
956
+ Processing by Blogit::PostsController#update as HTML
957
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
958
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 72], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00]]
959
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
960
+ Redirected to http://test.host/blog/posts/51-something-new
961
+ Completed 302 Found in 14ms
962
+ Processing by Blogit::PostsController#update as HTML
963
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
964
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
965
+ Redirected to http://test.host/blog/
966
+ Completed 302 Found in 1ms
967
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
968
+ Processing by Blogit::PostsController#show as HTML
969
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
970
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
971
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
972
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
973
+ Processing by Blogit::PostsController#destroy as HTML
974
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
975
+ Redirected to http://test.host/blog/posts
976
+ Completed 302 Found in 1ms
977
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
978
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
979
+ Processing by Blogit::PostsController#destroy as HTML
980
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
981
+ Redirected to http://test.host/blog/posts
982
+ Completed 302 Found in 11ms
983
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
984
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
985
+ Processing by Blogit::PostsController#destroy as HTML
986
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
987
+ Redirected to http://test.host/blog/posts
988
+ Completed 302 Found in 1ms
989
+ Processing by Blogit::PostsController#destroy as HTML
990
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
991
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
992
+ Redirected to http://test.host/blog/
993
+ Completed 302 Found in 1ms
994
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
995
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 77], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00]]
996
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
997
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
998
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 78], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00]]
999
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1000
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1001
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 79], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00]]
1002
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1003
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1004
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 80], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00]]
1005
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1006
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1007
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 81], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00]]
1008
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"
1009
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1010
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 82], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00]]
1011
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1012
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1013
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 83], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00]]
1014
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1015
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "Jeronimo"]]
1016
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 84 LIMIT 1
1017
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "Jeronimo"]]
1018
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 85 LIMIT 1
1019
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" 
1020
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 35 AND "taggings"."taggable_type" = 'Blogit::Post'
1021
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 35 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1022
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 35]]
1023
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 36 AND "taggings"."taggable_type" = 'Blogit::Post'
1024
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 36 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1025
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 36]]
1026
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 37 AND "taggings"."taggable_type" = 'Blogit::Post'
1027
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 37 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1028
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 37]]
1029
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 38 AND "taggings"."taggable_type" = 'Blogit::Post'
1030
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 38 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1031
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 38]]
1032
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 39 AND "taggings"."taggable_type" = 'Blogit::Post'
1033
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 39 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1034
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 39]]
1035
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 40 AND "taggings"."taggable_type" = 'Blogit::Post'
1036
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 40 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1037
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 40]]
1038
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 41 AND "taggings"."taggable_type" = 'Blogit::Post'
1039
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 41 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1040
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 41]]
1041
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 42 AND "taggings"."taggable_type" = 'Blogit::Post'
1042
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 42 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1043
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 42]]
1044
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 43 AND "taggings"."taggable_type" = 'Blogit::Post'
1045
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 43 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1046
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 43]]
1047
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 44 AND "taggings"."taggable_type" = 'Blogit::Post'
1048
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 44 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1049
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 44]]
1050
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 45 AND "taggings"."taggable_type" = 'Blogit::Post'
1051
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 45 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1052
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 45]]
1053
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 46 AND "taggings"."taggable_type" = 'Blogit::Post'
1054
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 46 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1055
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 46]]
1056
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 47 AND "taggings"."taggable_type" = 'Blogit::Post'
1057
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 47 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1058
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 47]]
1059
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 48 AND "taggings"."taggable_type" = 'Blogit::Post'
1060
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 48 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1061
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 48]]
1062
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 49 AND "taggings"."taggable_type" = 'Blogit::Post'
1063
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 49 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1064
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 49]]
1065
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 50 AND "taggings"."taggable_type" = 'Blogit::Post'
1066
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 50 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1067
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 50]]
1068
+ ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 51 AND "taggings"."taggable_type" = 'Blogit::Post'
1069
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 51 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1070
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 51]]
1071
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 52 AND "taggings"."taggable_type" = 'Blogit::Post'
1072
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 52 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1073
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 52]]
1074
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 53 AND "taggings"."taggable_type" = 'Blogit::Post'
1075
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 53 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1076
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 53]]
1077
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 54 AND "taggings"."taggable_type" = 'Blogit::Post'
1078
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 54 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1079
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 54]]
1080
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 55 AND "taggings"."taggable_type" = 'Blogit::Post'
1081
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 55 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1082
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 55]]
1083
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 56 AND "taggings"."taggable_type" = 'Blogit::Post'
1084
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 56 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1085
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 56]]
1086
+ ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 57 AND "taggings"."taggable_type" = 'Blogit::Post'
1087
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 57 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1088
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 57]]
1089
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 58 AND "taggings"."taggable_type" = 'Blogit::Post'
1090
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 58 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
1091
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 58]]
1092
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1093
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 86], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00]]
1094
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1095
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1096
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 87], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 28 Dec 2011 16:54:23 UTC +00:00]]
1097
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1098
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1099
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 88], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 27 Dec 2011 16:54:23 UTC +00:00]]
1100
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1101
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1102
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 89], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:54:23 UTC +00:00]]
1103
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1104
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1105
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 90], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 25 Dec 2011 16:54:23 UTC +00:00]]
1106
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1107
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1108
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 91], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 24 Dec 2011 16:54:23 UTC +00:00]]
1109
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1110
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1111
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 92], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 23 Dec 2011 16:54:23 UTC +00:00]]
1112
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1113
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1114
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 93], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 22 Dec 2011 16:54:23 UTC +00:00]]
1115
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1116
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1117
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 94], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 21 Dec 2011 16:54:23 UTC +00:00]]
1118
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1119
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1120
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 95], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 20 Dec 2011 16:54:23 UTC +00:00]]
1121
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1122
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1123
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 96], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 19 Dec 2011 16:54:23 UTC +00:00]]
1124
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1125
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1126
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 97], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 18 Dec 2011 16:54:23 UTC +00:00]]
1127
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1128
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1129
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 98], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 17 Dec 2011 16:54:23 UTC +00:00]]
1130
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1131
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1132
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 99], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 16 Dec 2011 16:54:23 UTC +00:00]]
1133
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
1134
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]]
1135
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 100], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 15 Dec 2011 16:54:23 UTC +00:00]]
1136
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
1137
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0
1138
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1
1139
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count 
1140
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count