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