blogit 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +2 -1
- data/app/controllers/blogit/posts_controller.rb +3 -0
- data/app/views/blogit/posts/index.rss.builder +30 -0
- data/config/routes.rb +1 -3
- data/lib/blogit/configuration.rb +17 -0
- data/lib/blogit/version.rb +1 -1
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +7 -0
- data/spec/dummy/log/test.log +1140 -0
- data/spec/lib/configuration_spec.rb +12 -0
- metadata +42 -33
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/
|
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
|
@@ -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
|
data/config/routes.rb
CHANGED
@@ -1,11 +1,9 @@
|
|
1
1
|
Blogit::Engine.routes.draw do
|
2
2
|
|
3
|
-
resources :posts
|
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
|
data/lib/blogit/configuration.rb
CHANGED
@@ -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
|
|
data/lib/blogit/version.rb
CHANGED
File without changes
|
Binary file
|
@@ -0,0 +1,7 @@
|
|
1
|
+
[1m[36m (0.3ms)[0m [1mselect sqlite_version(*)[0m
|
2
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
3
|
+
[1m[36m (63.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
4
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("schema_migrations")
|
5
|
+
[1m[36m (3.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
6
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
7
|
+
[1m[36m (2.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
@@ -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
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
44
|
+
Migrating to CreateUsers (20110814091304)
|
45
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
46
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "password" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
47
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20110814091304')
|
48
|
+
Migrating to CreatePeople (20110819103335)
|
49
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
50
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20110819103335')
|
51
|
+
Migrating to CreateBlogPosts (20111118222920)
|
52
|
+
[1m[36m (0.3ms)[0m [1mCREATE 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) [0m
|
53
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("blog_posts")
|
54
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_blog_posts_on_blogger_type_and_blogger_id" ON "blog_posts" ("blogger_type", "blogger_id")[0m
|
55
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20111118222920')
|
56
|
+
Migrating to CreateBlogComments (20111118222921)
|
57
|
+
[1m[36m (0.3ms)[0m [1mCREATE 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) [0m
|
58
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("blog_comments")
|
59
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_blog_comments_on_post_id" ON "blog_comments" ("post_id")[0m
|
60
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20111118222921')
|
61
|
+
Migrating to ActsAsTaggableOnMigration (20111118222922)
|
62
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) [0m
|
63
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("taggings")[0m
|
65
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_taggings_on_tag_id" ON "taggings" ("tag_id")
|
66
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("taggings")[0m
|
67
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_taggings_on_tag_id')
|
68
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_taggings_on_taggable_id_and_taggable_type_and_context" ON "taggings" ("taggable_id", "taggable_type", "context")[0m
|
69
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20111118222922')
|
70
|
+
[1m[36m (0.3ms)[0m [1mselect sqlite_version(*)[0m
|
71
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
72
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("blog_comments")[0m
|
73
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_blog_comments_on_post_id')
|
74
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("blog_posts")[0m
|
75
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_blog_posts_on_blogger_type_and_blogger_id')
|
76
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("people")[0m
|
77
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("taggings")
|
78
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_taggings_on_taggable_id_and_taggable_type_and_context')[0m
|
79
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_taggings_on_tag_id')
|
80
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("tags")[0m
|
81
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
82
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
83
|
+
[1m[35mSQL (56.1ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
86
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1[0m
|
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
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]]
|
90
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1
|
92
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1[0m
|
93
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.325325' WHERE "blog_posts"."id" = 1
|
94
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
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
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1
|
98
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
99
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "1"]]
|
103
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1[0m
|
105
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1
|
106
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.486278' WHERE "blog_posts"."id" = 1[0m
|
107
|
+
[1m[35mBlogit::Post Load (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1[0m
|
111
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "1"]]
|
115
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1[0m
|
117
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1
|
118
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.498874' WHERE "blog_posts"."id" = 1[0m
|
119
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]]
|
126
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1
|
128
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1[0m
|
129
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.512032' WHERE "blog_posts"."id" = 1
|
130
|
+
[1m[36mBlogit::Post Load (0.0ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
131
|
+
Redirected to http://test.host/blog/posts/1-tis-is-a-blog-post-title
|
132
|
+
Completed 302 Found in 11ms
|
133
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
134
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1
|
136
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.524574' WHERE "blog_posts"."id" = 1[0m
|
137
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
138
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
139
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 1]]
|
140
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1[0m
|
141
|
+
Processing by Blogit::CommentsController#destroy as JS
|
142
|
+
Parameters: {"id"=>"5", "post_id"=>"1", "use_route"=>"blogit"}
|
143
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]]
|
144
|
+
[1m[36mBlogit::Comment Load (0.1ms)[0m [1mSELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 1 AND "blog_comments"."id" = ? LIMIT 1[0m [["id", "5"]]
|
145
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1
|
146
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 1[0m
|
147
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 5]]
|
148
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.540087' WHERE "blog_posts"."id" = 1[0m
|
149
|
+
Completed 200 OK in 43ms (Views: 36.0ms | ActiveRecord: 0.8ms)
|
150
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 1]]
|
151
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1[0m
|
152
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
153
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1
|
155
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.587671' WHERE "blog_posts"."id" = 1[0m
|
156
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
157
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
158
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 1]]
|
159
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1[0m
|
160
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
161
|
+
Parameters: {"id"=>"6", "post_id"=>"1", "use_route"=>"blogit"}
|
162
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]]
|
163
|
+
[1m[36mBlogit::Comment Load (0.0ms)[0m [1mSELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 1 AND "blog_comments"."id" = ? LIMIT 1[0m [["id", "6"]]
|
164
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1
|
165
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 1[0m
|
166
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 6]]
|
167
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.740055' WHERE "blog_posts"."id" = 1[0m
|
168
|
+
Redirected to http://test.host/blog/posts/1-tis-is-a-blog-post-title
|
169
|
+
Completed 302 Found in 7ms
|
170
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 1]]
|
171
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1[0m
|
172
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
173
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1
|
175
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.750174' WHERE "blog_posts"."id" = 1[0m
|
176
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
177
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
178
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
179
|
+
Parameters: {"id"=>"7", "post_id"=>"1", "use_route"=>"blogit"}
|
180
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]]
|
181
|
+
[1m[36mBlogit::Comment Load (0.0ms)[0m [1mSELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 1 AND "blog_comments"."id" = ? LIMIT 1[0m [["id", "7"]]
|
182
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1
|
183
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 1[0m
|
184
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 7]]
|
185
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.759424' WHERE "blog_posts"."id" = 1[0m
|
186
|
+
Redirected to http://test.host/blog/posts/1-tis-is-a-blog-post-title
|
187
|
+
Completed 302 Found in 10ms
|
188
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
189
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1
|
191
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.771221' WHERE "blog_posts"."id" = 1[0m
|
192
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
193
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
194
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
195
|
+
Parameters: {"id"=>"8", "post_id"=>"1", "use_route"=>"blogit"}
|
196
|
+
[1m[35mUser Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
200
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
201
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1
|
203
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.785387' WHERE "blog_posts"."id" = 1[0m
|
204
|
+
[1m[35mBlogit::Post Load (0.0ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
205
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
206
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
207
|
+
Parameters: {"id"=>"9", "post_id"=>"1", "use_route"=>"blogit"}
|
208
|
+
[1m[35mUser Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
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
|
+
[1m[35mUser Load (0.1ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
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
|
+
[1m[35mUser Load (0.1ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
235
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
241
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
248
|
+
Redirected to http://test.host/blog/
|
249
|
+
Completed 302 Found in 1ms
|
250
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
251
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
257
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
262
|
+
Redirected to http://test.host/blog/posts/2-something-new
|
263
|
+
Completed 302 Found in 9ms
|
264
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
265
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
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
|
+
[1m[35mUser Load (0.1ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
282
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
288
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
294
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
307
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
310
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
313
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
316
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
319
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
322
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
325
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 18 LIMIT 1[0m
|
327
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 19 LIMIT 1[0m
|
329
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
330
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
331
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
332
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 1]]
|
333
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Blogit::Post'
|
334
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
335
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 2]]
|
336
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
337
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
338
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 3]]
|
339
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Blogit::Post'
|
340
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
341
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 4]]
|
342
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
343
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
344
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 5]]
|
345
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Blogit::Post'
|
346
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
347
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 6]]
|
348
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
349
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
350
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 7]]
|
351
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Blogit::Post'
|
352
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
353
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 8]]
|
354
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
355
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
356
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 9]]
|
357
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Blogit::Post'
|
358
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
359
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 10]]
|
360
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
363
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
366
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
369
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
372
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
375
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
378
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
381
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
384
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
387
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
390
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
393
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
396
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
399
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
402
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
405
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0
|
406
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1[0m
|
407
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count
|
408
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count [0m
|
409
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
410
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.3ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "11"]]
|
414
|
+
[1m[35mSQL (13.8ms)[0m INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1[0m
|
416
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11
|
417
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.369765' WHERE "blog_posts"."id" = 11[0m
|
418
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11[0m
|
422
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
423
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11[0m
|
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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "11"]]
|
427
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1
|
429
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11[0m
|
430
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.604804' WHERE "blog_posts"."id" = 11
|
431
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
432
|
+
Redirected to http://test.host/blog/posts/11-tis-is-a-blog-post-title
|
433
|
+
Completed 302 Found in 52ms
|
434
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11
|
435
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "11"]]
|
439
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1
|
441
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11[0m
|
442
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.662337' WHERE "blog_posts"."id" = 11
|
443
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
444
|
+
Redirected to http://test.host/blog/posts/11-tis-is-a-blog-post-title
|
445
|
+
Completed 302 Found in 18ms
|
446
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "11"]]
|
450
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1[0m
|
452
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11
|
453
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.683122' WHERE "blog_posts"."id" = 11[0m
|
454
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
458
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11[0m
|
460
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.701694' WHERE "blog_posts"."id" = 11
|
461
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
462
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
463
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 11]]
|
464
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "11"]]
|
468
|
+
[1m[35mBlogit::Comment Load (0.1ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 11 AND "blog_comments"."id" = ? LIMIT 1 [["id", "14"]]
|
469
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1[0m
|
470
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 11
|
471
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 14]]
|
472
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 11]]
|
475
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11
|
476
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
477
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11[0m
|
479
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.730245' WHERE "blog_posts"."id" = 11
|
480
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
481
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
482
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 11]]
|
483
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "11"]]
|
487
|
+
[1m[35mBlogit::Comment Load (0.1ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 11 AND "blog_comments"."id" = ? LIMIT 1 [["id", "15"]]
|
488
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1[0m
|
489
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 11
|
490
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 15]]
|
491
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 11]]
|
495
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11
|
496
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
497
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11[0m
|
499
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.754307' WHERE "blog_posts"."id" = 11
|
500
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
501
|
+
[1m[35mUser Load (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "11"]]
|
505
|
+
[1m[35mBlogit::Comment Load (0.1ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 11 AND "blog_comments"."id" = ? LIMIT 1 [["id", "16"]]
|
506
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1[0m
|
507
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 11
|
508
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 16]]
|
509
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
513
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11[0m
|
515
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.775731' WHERE "blog_posts"."id" = 11
|
516
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
517
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments"
|
518
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
519
|
+
Parameters: {"id"=>"17", "post_id"=>"11", "use_route"=>"blogit"}
|
520
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
521
|
+
Redirected to http://test.host/blog/
|
522
|
+
Completed 302 Found in 1ms
|
523
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments"
|
524
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
525
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11[0m
|
527
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.788661' WHERE "blog_posts"."id" = 11
|
528
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
529
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments"
|
530
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
531
|
+
Parameters: {"id"=>"18", "post_id"=>"11", "use_route"=>"blogit"}
|
532
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
533
|
+
Redirected to http://test.host/blog/
|
534
|
+
Completed 302 Found in 1ms
|
535
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
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
|
+
[1m[35mUser Load (0.1ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
556
|
+
Redirected to http://test.host/blog/
|
557
|
+
Completed 302 Found in 1ms
|
558
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
559
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
565
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
575
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
581
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
586
|
+
Redirected to http://test.host/blog/posts/26-something-new
|
587
|
+
Completed 302 Found in 16ms
|
588
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
589
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
599
|
+
Redirected to http://test.host/blog/
|
600
|
+
Completed 302 Found in 1ms
|
601
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
606
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
612
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
618
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
626
|
+
Redirected to http://test.host/blog/
|
627
|
+
Completed 302 Found in 1ms
|
628
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
631
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
634
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
637
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
640
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.3ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
643
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
646
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
649
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 51 LIMIT 1
|
651
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 LIMIT 1
|
653
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
654
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Blogit::Post'
|
655
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
656
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 11]]
|
657
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
658
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
659
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 12]]
|
660
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 13 AND "taggings"."taggable_type" = 'Blogit::Post'
|
661
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 13 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
662
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 13]]
|
663
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 14 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
664
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 14 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
665
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 14]]
|
666
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 15 AND "taggings"."taggable_type" = 'Blogit::Post'
|
667
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 15 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
668
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 15]]
|
669
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 16 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
670
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 16 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
671
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 16]]
|
672
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.2ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 17 AND "taggings"."taggable_type" = 'Blogit::Post'
|
673
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 17 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
674
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 17]]
|
675
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 18 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
676
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 18 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
677
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 18]]
|
678
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 19 AND "taggings"."taggable_type" = 'Blogit::Post'
|
679
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 19 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
680
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 19]]
|
681
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.2ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 20 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
682
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 20 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
683
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 20]]
|
684
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 21 AND "taggings"."taggable_type" = 'Blogit::Post'
|
685
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 21 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
686
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 21]]
|
687
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.2ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 22 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
688
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 22 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
689
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 22]]
|
690
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 23 AND "taggings"."taggable_type" = 'Blogit::Post'
|
691
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 23 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
692
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 23]]
|
693
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 24 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
694
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 24 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
695
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 24]]
|
696
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.2ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 25 AND "taggings"."taggable_type" = 'Blogit::Post'
|
697
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 25 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
698
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 25]]
|
699
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 26 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
700
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 26 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
701
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 26]]
|
702
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 27 AND "taggings"."taggable_type" = 'Blogit::Post'
|
703
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 27 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
704
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 27]]
|
705
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 28 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
706
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 28 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
707
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 28]]
|
708
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 29 AND "taggings"."taggable_type" = 'Blogit::Post'
|
709
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 29 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
710
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 29]]
|
711
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 30 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
712
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 30 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
713
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 30]]
|
714
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.2ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 31 AND "taggings"."taggable_type" = 'Blogit::Post'
|
715
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 31 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
716
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 31]]
|
717
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 32 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
718
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 32 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
719
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 32]]
|
720
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 33 AND "taggings"."taggable_type" = 'Blogit::Post'
|
721
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 33 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
722
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 33]]
|
723
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.2ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 34 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
724
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 34 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
725
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 34]]
|
726
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
729
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
732
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
735
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
738
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
741
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
744
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
747
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
750
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
753
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
756
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
759
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
762
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
765
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
768
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
771
|
+
[1m[36mBlogit::Post Load (0.3ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0[0m
|
772
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1
|
773
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count [0m
|
774
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count
|
775
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
776
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "35"]]
|
780
|
+
[1m[35mSQL (11.7ms)[0m INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1[0m
|
782
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35
|
783
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.432627' WHERE "blog_posts"."id" = 35[0m
|
784
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35[0m
|
788
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
789
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35[0m
|
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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "35"]]
|
793
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1
|
795
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35[0m
|
796
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.654736' WHERE "blog_posts"."id" = 35
|
797
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
798
|
+
Redirected to http://test.host/blog/posts/35-tis-is-a-blog-post-title
|
799
|
+
Completed 302 Found in 45ms
|
800
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35
|
801
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "35"]]
|
805
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1
|
807
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35[0m
|
808
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.704744' WHERE "blog_posts"."id" = 35
|
809
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
810
|
+
Redirected to http://test.host/blog/posts/35-tis-is-a-blog-post-title
|
811
|
+
Completed 302 Found in 15ms
|
812
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "35"]]
|
816
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1[0m
|
818
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35
|
819
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.722868' WHERE "blog_posts"."id" = 35[0m
|
820
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
824
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35[0m
|
826
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.740911' WHERE "blog_posts"."id" = 35
|
827
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
828
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
829
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 35]]
|
830
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "35"]]
|
834
|
+
[1m[35mBlogit::Comment Load (0.2ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 35 AND "blog_comments"."id" = ? LIMIT 1 [["id", "23"]]
|
835
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1[0m
|
836
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 35
|
837
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 23]]
|
838
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 35]]
|
841
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35
|
842
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
843
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35[0m
|
845
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.766177' WHERE "blog_posts"."id" = 35
|
846
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
847
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
848
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 35]]
|
849
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "35"]]
|
853
|
+
[1m[35mBlogit::Comment Load (0.0ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 35 AND "blog_comments"."id" = ? LIMIT 1 [["id", "24"]]
|
854
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1[0m
|
855
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 35
|
856
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 24]]
|
857
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 35]]
|
861
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35
|
862
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
863
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35[0m
|
865
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.787801' WHERE "blog_posts"."id" = 35
|
866
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
867
|
+
[1m[35mUser Load (0.1ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "35"]]
|
871
|
+
[1m[35mBlogit::Comment Load (0.0ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 35 AND "blog_comments"."id" = ? LIMIT 1 [["id", "25"]]
|
872
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1[0m
|
873
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 35
|
874
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 25]]
|
875
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
879
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 29 Dec 2011 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
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35[0m
|
881
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.807742' WHERE "blog_posts"."id" = 35
|
882
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
883
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments"
|
884
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
885
|
+
Parameters: {"id"=>"26", "post_id"=>"35", "use_route"=>"blogit"}
|
886
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
887
|
+
Redirected to http://test.host/blog/
|
888
|
+
Completed 302 Found in 1ms
|
889
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments"
|
890
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
891
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", 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
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35[0m
|
893
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.820385' WHERE "blog_posts"."id" = 35
|
894
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
895
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments"
|
896
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
897
|
+
Parameters: {"id"=>"27", "post_id"=>"35", "use_route"=>"blogit"}
|
898
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
899
|
+
Redirected to http://test.host/blog/
|
900
|
+
Completed 302 Found in 1ms
|
901
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
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
|
+
[1m[35mUser Load (0.1ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
922
|
+
Redirected to http://test.host/blog/
|
923
|
+
Completed 302 Found in 1ms
|
924
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
925
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
931
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.2ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
941
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
947
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
952
|
+
Redirected to http://test.host/blog/posts/50-something-new
|
953
|
+
Completed 302 Found in 14ms
|
954
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
955
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
965
|
+
Redirected to http://test.host/blog/
|
966
|
+
Completed 302 Found in 1ms
|
967
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
972
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
978
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
984
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
992
|
+
Redirected to http://test.host/blog/
|
993
|
+
Completed 302 Found in 1ms
|
994
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
997
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1000
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1003
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1006
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1009
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1012
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1015
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 84 LIMIT 1
|
1017
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 85 LIMIT 1
|
1019
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1020
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 35 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1021
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 35 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1022
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 35]]
|
1023
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 36 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1024
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 36 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1025
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 36]]
|
1026
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 37 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1027
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 37 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1028
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 37]]
|
1029
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 38 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1030
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 38 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1031
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 38]]
|
1032
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 39 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1033
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 39 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1034
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 39]]
|
1035
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 40 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1036
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 40 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1037
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 40]]
|
1038
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 41 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1039
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 41 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1040
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 41]]
|
1041
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 42 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1042
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 42 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1043
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 42]]
|
1044
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 43 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1045
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 43 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1046
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 43]]
|
1047
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 44 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1048
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 44 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1049
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 44]]
|
1050
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 45 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1051
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 45 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1052
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 45]]
|
1053
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 46 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1054
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 46 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1055
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 46]]
|
1056
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 47 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1057
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 47 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1058
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 47]]
|
1059
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 48 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1060
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 48 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1061
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 48]]
|
1062
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 49 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1063
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 49 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1064
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 49]]
|
1065
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 50 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1066
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 50 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1067
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 50]]
|
1068
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.2ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 51 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1069
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 51 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1070
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 51]]
|
1071
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 52 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1072
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 52 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1073
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 52]]
|
1074
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 53 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1075
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 53 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1076
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 53]]
|
1077
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 54 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1078
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 54 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1079
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 54]]
|
1080
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 55 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1081
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 55 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1082
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 55]]
|
1083
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 56 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1084
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 56 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1085
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 56]]
|
1086
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.2ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 57 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1087
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 57 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')[0m
|
1088
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 57]]
|
1089
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 58 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1090
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 58 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
|
1091
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 58]]
|
1092
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1095
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1098
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1101
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1104
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1107
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1110
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1113
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1116
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1119
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1122
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1125
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1128
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1131
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1134
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["blogger_id", 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
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts"
|
1137
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0[0m
|
1138
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1
|
1139
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count [0m
|
1140
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count
|