blogit 0.0.13 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/app/assets/stylesheets/blogit/index.css +75 -3
- data/app/controllers/blogit/application_controller.rb +15 -1
- data/app/controllers/blogit/comments_controller.rb +12 -11
- data/app/controllers/blogit/posts_controller.rb +18 -26
- data/app/models/blogit/post.rb +5 -2
- data/app/sweepers/blogit/blogit_sweeper.rb +9 -0
- data/app/views/blogit/comments/_admin_links.html.erb +1 -1
- data/app/views/blogit/comments/_comment.html.erb +4 -3
- data/app/views/blogit/comments/_form.html.erb +5 -5
- data/app/views/blogit/comments/create.js.erb +2 -2
- data/app/views/blogit/comments/destroy.js.erb +1 -1
- data/app/views/blogit/posts/_form.html.erb +5 -5
- data/app/views/blogit/posts/_pagination.html.erb +1 -1
- data/app/views/blogit/posts/edit.html.erb +1 -1
- data/app/views/blogit/posts/index.html.erb +2 -2
- data/app/views/blogit/posts/show.html.erb +2 -2
- data/lib/blogit.rb +9 -1
- data/lib/blogit/configuration.rb +5 -1
- data/lib/blogit/version.rb +1 -1
- data/lib/generators/templates/blogit.rb +16 -14
- data/spec/controllers/blogit/posts_controller_spec.rb +6 -6
- data/spec/dummy/app/assets/javascripts/application.js +1 -1
- data/spec/dummy/app/controllers/sessions_controller.rb +4 -5
- data/spec/dummy/config/initializers/blogit.rb +20 -7
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +3595 -0
- data/spec/dummy/log/production.log +350 -0
- data/spec/dummy/log/test.log +2562 -0
- data/spec/dummy/tmp/cache/11C/511/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fblogit.css%3F +0 -0
- data/spec/dummy/tmp/cache/32F/2C1/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fapplication.css%3F +0 -0
- data/spec/dummy/tmp/cache/A67/FC0/00e6805637a9665e1a42a74d29e98005efabb763 +0 -0
- data/spec/dummy/tmp/cache/AF8/620/e1e89c69903e241156121a94f96b1efc3cc6cee1 +0 -0
- data/spec/dummy/tmp/cache/assets/CEF/560/sprockets%2Fa1bf08ab120c72351b460a65e4800af6 +0 -0
- data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/{app/assets/stylesheets/blogit/posts.css → spec/dummy/tmp/cache/assets/D33/240/sprockets%2Ffd4446a4ab97006a073ba30d57fdd617} +0 -0
- data/spec/dummy/tmp/cache/assets/D4A/D70/sprockets%2F16a7df19fe9d18a2054dde377f7d4704 +0 -0
- data/spec/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
- data/spec/dummy/tmp/cache/assets/D61/6F0/sprockets%2F02da53eeca228bcef0c49278517111fe +0 -0
- data/spec/dummy/tmp/cache/assets/D7B/550/sprockets%2F439d3388bfb2b3843b2d7e7fae1cd679 +0 -0
- data/spec/dummy/tmp/cache/assets/D82/800/sprockets%2F72f633d76779cbfb7d9a57b5623c3faf +0 -0
- data/spec/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -0
- data/spec/dummy/tmp/cache/assets/DAA/EC0/sprockets%2F5ce7f7ceaea79177a501679df3ff134a +0 -0
- data/spec/dummy/tmp/cache/assets/DCA/9B0/sprockets%2Fdf0e8f8a85e5d4056b3fe1cec3b7131a +0 -0
- data/spec/dummy/tmp/cache/assets/DCB/C80/sprockets%2Fb37cd626dabfc434d8e92b5cb5d16f05 +0 -0
- data/spec/dummy/tmp/cache/assets/DFF/B40/sprockets%2Fe0d60af9df95b2a58c278acd3f2beb55 +0 -0
- data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/cache/assets/E0A/870/sprockets%2Fbba31cc2875be0fddf5901fef9b99e48 +0 -0
- data/spec/dummy/tmp/cache/assets/E30/DC0/sprockets%2F9ddd7093ee1d47cbacd526f4bdd36e3c +0 -0
- data/spec/lib/configuration_spec.rb +4 -1
- metadata +159 -30
- data/app/assets/stylesheets/blogit/comments.css +0 -16
@@ -0,0 +1,350 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
Started GET "/blog/" for 127.0.0.1 at 2011-11-18 22:54:18 +0000
|
4
|
+
Processing by Blogit::PostsController#index as HTML
|
5
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (47.8ms)
|
6
|
+
Completed 500 Internal Server Error in 75ms
|
7
|
+
|
8
|
+
ActionView::Template::Error (Could not find table 'users'):
|
9
|
+
1: <%= login_required class: "actions", id: "new_blog_post_link" do %>
|
10
|
+
2: <%= link_to 'New Blog post', new_post_path %>
|
11
|
+
3: <% end %>
|
12
|
+
4:
|
13
|
+
app/controllers/application_controller.rb:9:in `current_user'
|
14
|
+
|
15
|
+
Rendered /Users/Gavin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
16
|
+
Rendered /Users/Gavin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
17
|
+
Rendered /Users/Gavin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (2.9ms)
|
18
|
+
Migrating to CreateUsers (20110814091304)
|
19
|
+
Migrating to CreatePeople (20110819103335)
|
20
|
+
Migrating to CreateBlogPosts (20111118222920)
|
21
|
+
Migrating to CreateBlogComments (20111118222921)
|
22
|
+
Migrating to ActsAsTaggableOnMigration (20111118222922)
|
23
|
+
|
24
|
+
|
25
|
+
Started GET "/blog/" for 127.0.0.1 at 2011-11-18 22:55:47 +0000
|
26
|
+
Processing by Blogit::PostsController#index as HTML
|
27
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (0.9ms)
|
28
|
+
Completed 500 Internal Server Error in 1ms
|
29
|
+
|
30
|
+
ActionView::Template::Error (Could not find table 'users'):
|
31
|
+
1: <%= login_required class: "actions", id: "new_blog_post_link" do %>
|
32
|
+
2: <%= link_to 'New Blog post', new_post_path %>
|
33
|
+
3: <% end %>
|
34
|
+
4:
|
35
|
+
app/controllers/application_controller.rb:9:in `current_user'
|
36
|
+
|
37
|
+
Rendered /Users/Gavin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
38
|
+
Rendered /Users/Gavin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
39
|
+
Rendered /Users/Gavin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.1ms)
|
40
|
+
|
41
|
+
|
42
|
+
Started GET "/blog/" for 127.0.0.1 at 2011-11-18 22:55:47 +0000
|
43
|
+
Processing by Blogit::PostsController#index as HTML
|
44
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (0.9ms)
|
45
|
+
Completed 500 Internal Server Error in 1ms
|
46
|
+
|
47
|
+
ActionView::Template::Error (Could not find table 'users'):
|
48
|
+
1: <%= login_required class: "actions", id: "new_blog_post_link" do %>
|
49
|
+
2: <%= link_to 'New Blog post', new_post_path %>
|
50
|
+
3: <% end %>
|
51
|
+
4:
|
52
|
+
app/controllers/application_controller.rb:9:in `current_user'
|
53
|
+
|
54
|
+
Rendered /Users/Gavin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
55
|
+
Rendered /Users/Gavin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
56
|
+
Rendered /Users/Gavin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.0ms)
|
57
|
+
|
58
|
+
|
59
|
+
Started GET "/blog/" for 127.0.0.1 at 2011-11-18 22:55:57 +0000
|
60
|
+
Processing by Blogit::PostsController#index as HTML
|
61
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_empty.html.erb (0.3ms)
|
62
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (2.1ms)
|
63
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (56.3ms)
|
64
|
+
Write page /Users/Gavin/Gems/blogit/spec/dummy/public/blog.html (0.4ms)
|
65
|
+
Completed 200 OK in 93ms (Views: 90.6ms | ActiveRecord: 0.6ms)
|
66
|
+
|
67
|
+
|
68
|
+
Started GET "/assets/blogit.css" for 127.0.0.1 at 2011-11-18 22:55:57 +0000
|
69
|
+
Compiled blogit.css (1ms) (pid 34719)
|
70
|
+
Compiled blogit/comments.css (4ms) (pid 34719)
|
71
|
+
Compiled blogit/posts.css (0ms) (pid 34719)
|
72
|
+
Served asset /blogit.css - 200 OK (14ms)
|
73
|
+
|
74
|
+
|
75
|
+
Started GET "/assets/blogit.js" for 127.0.0.1 at 2011-11-18 22:55:57 +0000
|
76
|
+
Compiled blogit.js (0ms) (pid 34719)
|
77
|
+
Error compiling asset blogit.js:
|
78
|
+
LoadError: no such file to load -- uglifier
|
79
|
+
(in /Users/Gavin/Gems/blogit/app/assets/javascripts/blogit/index.js)
|
80
|
+
Served asset /blogit.js - 500 Internal Server Error
|
81
|
+
|
82
|
+
|
83
|
+
|
84
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2011-11-18 22:55:57 +0000
|
85
|
+
Compiled application.js (2ms) (pid 34719)
|
86
|
+
Compiled jquery.js (27ms) (pid 34719)
|
87
|
+
Compiled jquery_ujs.js (0ms) (pid 34719)
|
88
|
+
Error compiling asset application.js:
|
89
|
+
LoadError: no such file to load -- uglifier
|
90
|
+
(in /Users/Gavin/Gems/blogit/spec/dummy/app/assets/javascripts/application.js)
|
91
|
+
Served asset /application.js - 500 Internal Server Error
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2011-11-18 22:55:57 +0000
|
96
|
+
Compiled application.css (0ms) (pid 34719)
|
97
|
+
Served asset /application.css - 200 OK (4ms)
|
98
|
+
|
99
|
+
|
100
|
+
Started GET "/blog/" for 127.0.0.1 at 2011-11-18 22:55:58 +0000
|
101
|
+
Processing by Blogit::PostsController#index as HTML
|
102
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_empty.html.erb (0.1ms)
|
103
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.3ms)
|
104
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (3.7ms)
|
105
|
+
Write page /Users/Gavin/Gems/blogit/spec/dummy/public/blog.html (0.4ms)
|
106
|
+
Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.4ms)
|
107
|
+
|
108
|
+
|
109
|
+
Started GET "/assets/blogit.js" for 127.0.0.1 at 2011-11-18 22:55:58 +0000
|
110
|
+
Error compiling asset blogit.js:
|
111
|
+
LoadError: no such file to load -- uglifier
|
112
|
+
(in /Users/Gavin/Gems/blogit/app/assets/javascripts/blogit/index.js)
|
113
|
+
Served asset /blogit.js - 500 Internal Server Error
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
Started GET "/assets/blogit.css" for 127.0.0.1 at 2011-11-18 22:55:58 +0000
|
118
|
+
Served asset /blogit.css - 304 Not Modified (0ms)
|
119
|
+
|
120
|
+
|
121
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2011-11-18 22:55:58 +0000
|
122
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
123
|
+
|
124
|
+
|
125
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2011-11-18 22:55:58 +0000
|
126
|
+
Error compiling asset application.js:
|
127
|
+
LoadError: no such file to load -- uglifier
|
128
|
+
(in /Users/Gavin/Gems/blogit/spec/dummy/app/assets/javascripts/application.js)
|
129
|
+
Served asset /application.js - 500 Internal Server Error
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
Started GET "/blog/" for 127.0.0.1 at 2011-11-18 23:00:43 +0000
|
134
|
+
Processing by Blogit::PostsController#index as HTML
|
135
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_empty.html.erb (0.3ms)
|
136
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (2.2ms)
|
137
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (54.5ms)
|
138
|
+
Completed 200 OK in 88ms (Views: 87.6ms | ActiveRecord: 0.6ms)
|
139
|
+
|
140
|
+
|
141
|
+
Started GET "/assets/blogit.css" for 127.0.0.1 at 2011-11-18 23:00:43 +0000
|
142
|
+
Served asset /blogit.css - 304 Not Modified (10ms)
|
143
|
+
|
144
|
+
|
145
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2011-11-18 23:00:43 +0000
|
146
|
+
Error compiling asset application.js:
|
147
|
+
LoadError: no such file to load -- uglifier
|
148
|
+
(in /Users/Gavin/Gems/blogit/spec/dummy/app/assets/javascripts/application.js)
|
149
|
+
Served asset /application.js - 500 Internal Server Error
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
Started GET "/assets/blogit.js" for 127.0.0.1 at 2011-11-18 23:00:43 +0000
|
154
|
+
Error compiling asset blogit.js:
|
155
|
+
LoadError: no such file to load -- uglifier
|
156
|
+
(in /Users/Gavin/Gems/blogit/app/assets/javascripts/blogit/index.js)
|
157
|
+
Served asset /blogit.js - 500 Internal Server Error
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2011-11-18 23:00:43 +0000
|
162
|
+
Served asset /application.css - 304 Not Modified (1ms)
|
163
|
+
|
164
|
+
|
165
|
+
Started GET "/blog/" for 127.0.0.1 at 2011-11-18 23:00:46 +0000
|
166
|
+
Processing by Blogit::PostsController#index as HTML
|
167
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_empty.html.erb (0.0ms)
|
168
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.2ms)
|
169
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (3.0ms)
|
170
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.4ms)
|
171
|
+
|
172
|
+
|
173
|
+
Started GET "/assets/blogit.css" for 127.0.0.1 at 2011-11-18 23:00:46 +0000
|
174
|
+
Served asset /blogit.css - 304 Not Modified (0ms)
|
175
|
+
|
176
|
+
|
177
|
+
Started GET "/assets/blogit.js" for 127.0.0.1 at 2011-11-18 23:00:46 +0000
|
178
|
+
Error compiling asset blogit.js:
|
179
|
+
LoadError: no such file to load -- uglifier
|
180
|
+
(in /Users/Gavin/Gems/blogit/app/assets/javascripts/blogit/index.js)
|
181
|
+
Served asset /blogit.js - 500 Internal Server Error
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2011-11-18 23:00:46 +0000
|
186
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
187
|
+
|
188
|
+
|
189
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2011-11-18 23:00:46 +0000
|
190
|
+
Error compiling asset application.js:
|
191
|
+
LoadError: no such file to load -- uglifier
|
192
|
+
(in /Users/Gavin/Gems/blogit/spec/dummy/app/assets/javascripts/application.js)
|
193
|
+
Served asset /application.js - 500 Internal Server Error
|
194
|
+
|
195
|
+
|
196
|
+
|
197
|
+
Started GET "/blog/" for 127.0.0.1 at 2011-11-18 23:01:04 +0000
|
198
|
+
Processing by Blogit::PostsController#index as HTML
|
199
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_empty.html.erb (0.0ms)
|
200
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (0.8ms)
|
201
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (2.6ms)
|
202
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.3ms)
|
203
|
+
|
204
|
+
|
205
|
+
Started GET "/assets/blogit.js" for 127.0.0.1 at 2011-11-18 23:01:04 +0000
|
206
|
+
Error compiling asset blogit.js:
|
207
|
+
LoadError: no such file to load -- uglifier
|
208
|
+
(in /Users/Gavin/Gems/blogit/app/assets/javascripts/blogit/index.js)
|
209
|
+
Served asset /blogit.js - 500 Internal Server Error
|
210
|
+
|
211
|
+
|
212
|
+
|
213
|
+
Started GET "/assets/blogit.css" for 127.0.0.1 at 2011-11-18 23:01:04 +0000
|
214
|
+
Served asset /blogit.css - 304 Not Modified (0ms)
|
215
|
+
|
216
|
+
|
217
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2011-11-18 23:01:04 +0000
|
218
|
+
Error compiling asset application.js:
|
219
|
+
LoadError: no such file to load -- uglifier
|
220
|
+
(in /Users/Gavin/Gems/blogit/spec/dummy/app/assets/javascripts/application.js)
|
221
|
+
Served asset /application.js - 500 Internal Server Error
|
222
|
+
|
223
|
+
|
224
|
+
|
225
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2011-11-18 23:01:04 +0000
|
226
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
227
|
+
|
228
|
+
|
229
|
+
Started GET "/blog/" for 127.0.0.1 at 2011-11-18 23:01:07 +0000
|
230
|
+
Processing by Blogit::PostsController#index as HTML
|
231
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_empty.html.erb (0.1ms)
|
232
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (0.9ms)
|
233
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (2.7ms)
|
234
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.3ms)
|
235
|
+
|
236
|
+
|
237
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2011-11-18 23:01:07 +0000
|
238
|
+
Error compiling asset application.js:
|
239
|
+
LoadError: no such file to load -- uglifier
|
240
|
+
(in /Users/Gavin/Gems/blogit/spec/dummy/app/assets/javascripts/application.js)
|
241
|
+
Served asset /application.js - 500 Internal Server Error
|
242
|
+
|
243
|
+
|
244
|
+
|
245
|
+
Started GET "/assets/blogit.js" for 127.0.0.1 at 2011-11-18 23:01:07 +0000
|
246
|
+
Error compiling asset blogit.js:
|
247
|
+
LoadError: no such file to load -- uglifier
|
248
|
+
(in /Users/Gavin/Gems/blogit/app/assets/javascripts/blogit/index.js)
|
249
|
+
Served asset /blogit.js - 500 Internal Server Error
|
250
|
+
|
251
|
+
|
252
|
+
|
253
|
+
Started GET "/assets/blogit.css" for 127.0.0.1 at 2011-11-18 23:01:07 +0000
|
254
|
+
Served asset /blogit.css - 304 Not Modified (0ms)
|
255
|
+
|
256
|
+
|
257
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2011-11-18 23:01:07 +0000
|
258
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
259
|
+
|
260
|
+
|
261
|
+
Started GET "/session/new" for 127.0.0.1 at 2011-11-18 23:01:18 +0000
|
262
|
+
Processing by SessionsController#new as HTML
|
263
|
+
Rendered sessions/new.html.erb within layouts/application (2.1ms)
|
264
|
+
Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.2ms)
|
265
|
+
|
266
|
+
|
267
|
+
Started GET "/assets/blogit.js" for 127.0.0.1 at 2011-11-18 23:01:18 +0000
|
268
|
+
Error compiling asset blogit.js:
|
269
|
+
LoadError: no such file to load -- uglifier
|
270
|
+
(in /Users/Gavin/Gems/blogit/app/assets/javascripts/blogit/index.js)
|
271
|
+
Served asset /blogit.js - 500 Internal Server Error
|
272
|
+
|
273
|
+
|
274
|
+
|
275
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2011-11-18 23:01:18 +0000
|
276
|
+
Error compiling asset application.js:
|
277
|
+
LoadError: no such file to load -- uglifier
|
278
|
+
(in /Users/Gavin/Gems/blogit/spec/dummy/app/assets/javascripts/application.js)
|
279
|
+
Served asset /application.js - 500 Internal Server Error
|
280
|
+
|
281
|
+
|
282
|
+
|
283
|
+
Started GET "/assets/blogit.css" for 127.0.0.1 at 2011-11-18 23:01:18 +0000
|
284
|
+
Served asset /blogit.css - 304 Not Modified (0ms)
|
285
|
+
|
286
|
+
|
287
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2011-11-18 23:01:18 +0000
|
288
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
289
|
+
|
290
|
+
|
291
|
+
Started POST "/session" for 127.0.0.1 at 2011-11-18 23:01:26 +0000
|
292
|
+
Processing by SessionsController#create as HTML
|
293
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"mbmXXcH+H2hgwb+ZxpDO0xLdCPQ29b0tRcFfcqU1G9M=", "session"=>{"username"=>"gavin@gavinmorrice.com", "password"=>"[FILTERED]"}, "commit"=>"Log in"}
|
294
|
+
Rendered sessions/new.html.erb within layouts/application (1.3ms)
|
295
|
+
Completed 200 OK in 5ms (Views: 3.2ms | ActiveRecord: 0.3ms)
|
296
|
+
|
297
|
+
|
298
|
+
Started GET "/assets/blogit.js" for 127.0.0.1 at 2011-11-18 23:01:26 +0000
|
299
|
+
Error compiling asset blogit.js:
|
300
|
+
LoadError: no such file to load -- uglifier
|
301
|
+
(in /Users/Gavin/Gems/blogit/app/assets/javascripts/blogit/index.js)
|
302
|
+
Served asset /blogit.js - 500 Internal Server Error
|
303
|
+
|
304
|
+
|
305
|
+
|
306
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2011-11-18 23:01:26 +0000
|
307
|
+
Error compiling asset application.js:
|
308
|
+
LoadError: no such file to load -- uglifier
|
309
|
+
(in /Users/Gavin/Gems/blogit/spec/dummy/app/assets/javascripts/application.js)
|
310
|
+
Served asset /application.js - 500 Internal Server Error
|
311
|
+
|
312
|
+
|
313
|
+
|
314
|
+
Started GET "/assets/blogit.css" for 127.0.0.1 at 2011-11-18 23:01:26 +0000
|
315
|
+
Served asset /blogit.css - 304 Not Modified (0ms)
|
316
|
+
|
317
|
+
|
318
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2011-11-18 23:01:26 +0000
|
319
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
320
|
+
|
321
|
+
|
322
|
+
Started POST "/session" for 127.0.0.1 at 2011-11-18 23:01:31 +0000
|
323
|
+
Processing by SessionsController#create as HTML
|
324
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"mbmXXcH+H2hgwb+ZxpDO0xLdCPQ29b0tRcFfcqU1G9M=", "session"=>{"username"=>"gavin@gavinmorrice.com", "password"=>"[FILTERED]"}, "commit"=>"Log in"}
|
325
|
+
Rendered sessions/new.html.erb within layouts/application (0.9ms)
|
326
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.2ms)
|
327
|
+
|
328
|
+
|
329
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2011-11-18 23:01:31 +0000
|
330
|
+
Error compiling asset application.js:
|
331
|
+
LoadError: no such file to load -- uglifier
|
332
|
+
(in /Users/Gavin/Gems/blogit/spec/dummy/app/assets/javascripts/application.js)
|
333
|
+
Served asset /application.js - 500 Internal Server Error
|
334
|
+
|
335
|
+
|
336
|
+
|
337
|
+
Started GET "/assets/blogit.js" for 127.0.0.1 at 2011-11-18 23:01:31 +0000
|
338
|
+
Error compiling asset blogit.js:
|
339
|
+
LoadError: no such file to load -- uglifier
|
340
|
+
(in /Users/Gavin/Gems/blogit/app/assets/javascripts/blogit/index.js)
|
341
|
+
Served asset /blogit.js - 500 Internal Server Error
|
342
|
+
|
343
|
+
|
344
|
+
|
345
|
+
Started GET "/assets/blogit.css" for 127.0.0.1 at 2011-11-18 23:01:31 +0000
|
346
|
+
Served asset /blogit.css - 304 Not Modified (0ms)
|
347
|
+
|
348
|
+
|
349
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2011-11-18 23:01:31 +0000
|
350
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
data/spec/dummy/log/test.log
CHANGED
@@ -984,3 +984,2565 @@ Completed 302 Found in 1ms
|
|
984
984
|
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1[0m
|
985
985
|
[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
|
986
986
|
[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
|
987
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
988
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59
|
989
|
+
Processing by Blogit::CommentsController#create as JS
|
990
|
+
Parameters: {"post_id"=>"59", "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"}
|
991
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "59"]]
|
992
|
+
[1m[35mSQL (11.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", Fri, 18 Nov 2011 22:38:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Fri, 18 Nov 2011 22:38:41 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
993
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1[0m
|
994
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59
|
995
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.2ms)
|
996
|
+
Completed 200 OK in 169ms (Views: 57.6ms | ActiveRecord: 11.8ms)
|
997
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59[0m
|
998
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
999
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59[0m
|
1000
|
+
Processing by Blogit::CommentsController#create as HTML
|
1001
|
+
Parameters: {"post_id"=>"59", "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"}
|
1002
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "59"]]
|
1003
|
+
[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", Fri, 18 Nov 2011 22:38:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Fri, 18 Nov 2011 22:38:41 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1004
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1
|
1005
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59[0m
|
1006
|
+
Redirected to http://test.host/blog/posts/59-tis-is-a-blog-post-title
|
1007
|
+
Completed 302 Found in 91ms
|
1008
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59
|
1009
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1010
|
+
Processing by Blogit::CommentsController#create as HTML
|
1011
|
+
Parameters: {"post_id"=>"59", "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"}
|
1012
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "59"]]
|
1013
|
+
[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", Fri, 18 Nov 2011 22:38:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Fri, 18 Nov 2011 22:38:41 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1014
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1
|
1015
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59[0m
|
1016
|
+
Redirected to http://test.host/blog/posts/59-tis-is-a-blog-post-title
|
1017
|
+
Completed 302 Found in 6ms
|
1018
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
1019
|
+
Processing by Blogit::CommentsController#create as HTML
|
1020
|
+
Parameters: {"post_id"=>"59", "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"}
|
1021
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "59"]]
|
1022
|
+
[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", Fri, 18 Nov 2011 22:38:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Fri, 18 Nov 2011 22:38:41 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1023
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1[0m
|
1024
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59
|
1025
|
+
Redirected to http://test.host/blog/posts/59-tis-is-a-blog-post-title
|
1026
|
+
Completed 302 Found in 8ms
|
1027
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1028
|
+
[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", Fri, 18 Nov 2011 22:38:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Fri, 18 Nov 2011 22:38:41 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1029
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59[0m
|
1030
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1031
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 59]]
|
1032
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59
|
1033
|
+
Processing by Blogit::CommentsController#destroy as JS
|
1034
|
+
Parameters: {"id"=>"32", "post_id"=>"59", "use_route"=>"blogit"}
|
1035
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "59"]]
|
1036
|
+
[1m[35mBlogit::Comment Load (0.1ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 AND "blog_comments"."id" = ? LIMIT 1 [["id", "32"]]
|
1037
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1[0m
|
1038
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 59
|
1039
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 32]]
|
1040
|
+
Completed 200 OK in 8ms (Views: 1.6ms | ActiveRecord: 0.5ms)
|
1041
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 59]]
|
1042
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59[0m
|
1043
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
1044
|
+
[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", Fri, 18 Nov 2011 22:38:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Fri, 18 Nov 2011 22:38:41 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1045
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59
|
1046
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1047
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 59]]
|
1048
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59[0m
|
1049
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
1050
|
+
Parameters: {"id"=>"33", "post_id"=>"59", "use_route"=>"blogit"}
|
1051
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "59"]]
|
1052
|
+
[1m[36mBlogit::Comment Load (0.0ms)[0m [1mSELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 AND "blog_comments"."id" = ? LIMIT 1[0m [["id", "33"]]
|
1053
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1
|
1054
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 59[0m
|
1055
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 33]]
|
1056
|
+
Redirected to http://test.host/blog/posts/59-tis-is-a-blog-post-title
|
1057
|
+
Completed 302 Found in 7ms
|
1058
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 59]]
|
1059
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59
|
1060
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1061
|
+
[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", Fri, 18 Nov 2011 22:38:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Fri, 18 Nov 2011 22:38:41 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1062
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59[0m
|
1063
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1064
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
1065
|
+
Parameters: {"id"=>"34", "post_id"=>"59", "use_route"=>"blogit"}
|
1066
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "59"]]
|
1067
|
+
[1m[35mBlogit::Comment Load (0.0ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 AND "blog_comments"."id" = ? LIMIT 1 [["id", "34"]]
|
1068
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1[0m
|
1069
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 59
|
1070
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 34]]
|
1071
|
+
Redirected to http://test.host/blog/posts/59-tis-is-a-blog-post-title
|
1072
|
+
Completed 302 Found in 6ms
|
1073
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
1074
|
+
[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", Fri, 18 Nov 2011 22:38:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Fri, 18 Nov 2011 22:38:41 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1075
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59
|
1076
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
1077
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
1078
|
+
Parameters: {"id"=>"35", "post_id"=>"59", "use_route"=>"blogit"}
|
1079
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
1080
|
+
Redirected to http://test.host/blog/
|
1081
|
+
Completed 302 Found in 1ms
|
1082
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
1083
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
1084
|
+
[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", Fri, 18 Nov 2011 22:38:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Fri, 18 Nov 2011 22:38:41 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1085
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59
|
1086
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
1087
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
1088
|
+
Parameters: {"id"=>"36", "post_id"=>"59", "use_route"=>"blogit"}
|
1089
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
1090
|
+
Redirected to http://test.host/blog/
|
1091
|
+
Completed 302 Found in 1ms
|
1092
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
1093
|
+
Processing by Blogit::PostsController#index as HTML
|
1094
|
+
Parameters: {"page"=>"", "use_route"=>"blogit"}
|
1095
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
1096
|
+
Processing by Blogit::PostsController#index as HTML
|
1097
|
+
Parameters: {"page"=>"2", "use_route"=>"blogit"}
|
1098
|
+
Completed 200 OK in 28ms (Views: 27.9ms | ActiveRecord: 0.0ms)
|
1099
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1100
|
+
Processing by Blogit::PostsController#new as HTML
|
1101
|
+
Parameters: {"use_route"=>"blogit"}
|
1102
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
1103
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1104
|
+
Processing by Blogit::PostsController#new as HTML
|
1105
|
+
Parameters: {"use_route"=>"blogit"}
|
1106
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1107
|
+
Processing by Blogit::PostsController#new as HTML
|
1108
|
+
Parameters: {"use_route"=>"blogit"}
|
1109
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
1110
|
+
Redirected to http://test.host/blog/
|
1111
|
+
Completed 302 Found in 1ms
|
1112
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1113
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1114
|
+
Processing by Blogit::PostsController#create as HTML
|
1115
|
+
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"}
|
1116
|
+
Redirected to http://test.host/blog/posts
|
1117
|
+
Completed 302 Found in 1ms
|
1118
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1119
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1120
|
+
Processing by Blogit::PostsController#edit as HTML
|
1121
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1122
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
1123
|
+
Processing by Blogit::PostsController#edit as HTML
|
1124
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1125
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
1126
|
+
Redirected to http://test.host/blog/
|
1127
|
+
Completed 302 Found in 1ms
|
1128
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1129
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1130
|
+
Processing by Blogit::PostsController#update as HTML
|
1131
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
1132
|
+
Redirected to http://test.host/blog/posts
|
1133
|
+
Completed 302 Found in 1ms
|
1134
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1135
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1136
|
+
Processing by Blogit::PostsController#update as HTML
|
1137
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
1138
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 104], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Something new"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00]]
|
1139
|
+
Redirected to http://test.host/blog/posts/74-something-new
|
1140
|
+
Completed 302 Found in 7ms
|
1141
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1142
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1143
|
+
Processing by Blogit::PostsController#update as HTML
|
1144
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
1145
|
+
[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", 105], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Something new"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00]]
|
1146
|
+
Redirected to http://test.host/blog/posts/75-something-new
|
1147
|
+
Completed 302 Found in 6ms
|
1148
|
+
Processing by Blogit::PostsController#update as HTML
|
1149
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
1150
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
1151
|
+
Redirected to http://test.host/blog/
|
1152
|
+
Completed 302 Found in 1ms
|
1153
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1154
|
+
Processing by Blogit::PostsController#show as HTML
|
1155
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1156
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
1157
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1158
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1159
|
+
Processing by Blogit::PostsController#destroy as HTML
|
1160
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1161
|
+
Redirected to http://test.host/blog/posts
|
1162
|
+
Completed 302 Found in 1ms
|
1163
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1164
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1165
|
+
Processing by Blogit::PostsController#destroy as HTML
|
1166
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1167
|
+
Redirected to http://test.host/blog/posts
|
1168
|
+
Completed 302 Found in 5ms
|
1169
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1170
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1171
|
+
Processing by Blogit::PostsController#destroy as HTML
|
1172
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1173
|
+
Redirected to http://test.host/blog/posts
|
1174
|
+
Completed 302 Found in 1ms
|
1175
|
+
Processing by Blogit::PostsController#destroy as HTML
|
1176
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1177
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
1178
|
+
Redirected to http://test.host/blog/
|
1179
|
+
Completed 302 Found in 1ms
|
1180
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1181
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 110], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00]]
|
1182
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1183
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 111], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00]]
|
1184
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1185
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 112], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00]]
|
1186
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1187
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 113], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00]]
|
1188
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1189
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 114], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00]]
|
1190
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1191
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 115], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00]]
|
1192
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1193
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 116], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00]]
|
1194
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "Jeronimo"]]
|
1195
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 117 LIMIT 1
|
1196
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "Jeronimo"]]
|
1197
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 118 LIMIT 1
|
1198
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1199
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 59 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1200
|
+
[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" = 59 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1201
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 59]]
|
1202
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 60 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1203
|
+
[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" = 60 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1204
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 60]]
|
1205
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 61 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1206
|
+
[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" = 61 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1207
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 61]]
|
1208
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 62 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1209
|
+
[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" = 62 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1210
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 62]]
|
1211
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 63 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1212
|
+
[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" = 63 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1213
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 63]]
|
1214
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 64 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1215
|
+
[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" = 64 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1216
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 64]]
|
1217
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 65 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1218
|
+
[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" = 65 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1219
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 65]]
|
1220
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 66 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1221
|
+
[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" = 66 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1222
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 66]]
|
1223
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 67 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1224
|
+
[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" = 67 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1225
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 67]]
|
1226
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 68 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1227
|
+
[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" = 68 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1228
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 68]]
|
1229
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 69 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1230
|
+
[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" = 69 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1231
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 69]]
|
1232
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 70 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1233
|
+
[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" = 70 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1234
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 70]]
|
1235
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 71 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1236
|
+
[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" = 71 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1237
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 71]]
|
1238
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 72 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1239
|
+
[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" = 72 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1240
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 72]]
|
1241
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 73 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1242
|
+
[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" = 73 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1243
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 73]]
|
1244
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 74 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1245
|
+
[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" = 74 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1246
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 74]]
|
1247
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 75 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1248
|
+
[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" = 75 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1249
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 75]]
|
1250
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 76 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1251
|
+
[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" = 76 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1252
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 76]]
|
1253
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 77 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1254
|
+
[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" = 77 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1255
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 77]]
|
1256
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 78 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1257
|
+
[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" = 78 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1258
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 78]]
|
1259
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 79 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1260
|
+
[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" = 79 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1261
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 79]]
|
1262
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 80 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1263
|
+
[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" = 80 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1264
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 80]]
|
1265
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 81 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1266
|
+
[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" = 81 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1267
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 81]]
|
1268
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 82 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1269
|
+
[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" = 82 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1270
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 82]]
|
1271
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1272
|
+
[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", 119], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00]]
|
1273
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1274
|
+
[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", 120], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Nov 2011 22:38:42 UTC +00:00]]
|
1275
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1276
|
+
[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", 121], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 16 Nov 2011 22:38:42 UTC +00:00]]
|
1277
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1278
|
+
[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", 122], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 15 Nov 2011 22:38:42 UTC +00:00]]
|
1279
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1280
|
+
[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", 123], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 14 Nov 2011 22:38:42 UTC +00:00]]
|
1281
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1282
|
+
[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", 124], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 13 Nov 2011 22:38:42 UTC +00:00]]
|
1283
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1284
|
+
[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", 125], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 12 Nov 2011 22:38:42 UTC +00:00]]
|
1285
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1286
|
+
[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", 126], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 11 Nov 2011 22:38:42 UTC +00:00]]
|
1287
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1288
|
+
[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", 127], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 10 Nov 2011 22:38:42 UTC +00:00]]
|
1289
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1290
|
+
[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", 128], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 09 Nov 2011 22:38:42 UTC +00:00]]
|
1291
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1292
|
+
[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", 129], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 08 Nov 2011 22:38:42 UTC +00:00]]
|
1293
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1294
|
+
[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", 130], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 07 Nov 2011 22:38:42 UTC +00:00]]
|
1295
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1296
|
+
[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", 131], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 06 Nov 2011 22:38:42 UTC +00:00]]
|
1297
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1298
|
+
[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", 132], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 05 Nov 2011 22:38:42 UTC +00:00]]
|
1299
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["username", "bodacious"]]
|
1300
|
+
[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", 133], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:38:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 04 Nov 2011 22:38:42 UTC +00:00]]
|
1301
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0
|
1302
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1[0m
|
1303
|
+
[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
|
1304
|
+
[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
|
1305
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1306
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 83
|
1307
|
+
Processing by Blogit::CommentsController#create as JS
|
1308
|
+
Parameters: {"post_id"=>"83", "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"}
|
1309
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "83"]]
|
1310
|
+
[1m[35mSQL (11.3ms)[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", Fri, 18 Nov 2011 22:40:50 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 83], ["state", nil], ["updated_at", Fri, 18 Nov 2011 22:40:50 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1311
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 83 LIMIT 1[0m
|
1312
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 83
|
1313
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.2ms)
|
1314
|
+
Completed 200 OK in 169ms (Views: 57.7ms | ActiveRecord: 11.9ms)
|
1315
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 83[0m
|
1316
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
1317
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 83[0m
|
1318
|
+
Processing by Blogit::CommentsController#create as HTML
|
1319
|
+
Parameters: {"post_id"=>"83", "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"}
|
1320
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "83"]]
|
1321
|
+
[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", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 83], ["state", nil], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1322
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 83 LIMIT 1
|
1323
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 83[0m
|
1324
|
+
Redirected to http://test.host/blog/posts/83-tis-is-a-blog-post-title
|
1325
|
+
Completed 302 Found in 89ms
|
1326
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 83
|
1327
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1328
|
+
Processing by Blogit::CommentsController#create as HTML
|
1329
|
+
Parameters: {"post_id"=>"83", "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"}
|
1330
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "83"]]
|
1331
|
+
[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", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 83], ["state", nil], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1332
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 83 LIMIT 1
|
1333
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 83[0m
|
1334
|
+
Redirected to http://test.host/blog/posts/83-tis-is-a-blog-post-title
|
1335
|
+
Completed 302 Found in 7ms
|
1336
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
1337
|
+
Processing by Blogit::CommentsController#create as HTML
|
1338
|
+
Parameters: {"post_id"=>"83", "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"}
|
1339
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "83"]]
|
1340
|
+
[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", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 83], ["state", nil], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1341
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 83 LIMIT 1[0m
|
1342
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 83
|
1343
|
+
Redirected to http://test.host/blog/posts/83-tis-is-a-blog-post-title
|
1344
|
+
Completed 302 Found in 9ms
|
1345
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1346
|
+
[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", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 83], ["state", nil], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1347
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 83[0m
|
1348
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1349
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 83]]
|
1350
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 83
|
1351
|
+
Processing by Blogit::CommentsController#destroy as JS
|
1352
|
+
Parameters: {"id"=>"41", "post_id"=>"83", "use_route"=>"blogit"}
|
1353
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "83"]]
|
1354
|
+
[1m[35mBlogit::Comment Load (0.1ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 83 AND "blog_comments"."id" = ? LIMIT 1 [["id", "41"]]
|
1355
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 83 LIMIT 1[0m
|
1356
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 83
|
1357
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 41]]
|
1358
|
+
Completed 200 OK in 9ms (Views: 1.6ms | ActiveRecord: 0.5ms)
|
1359
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 83]]
|
1360
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 83[0m
|
1361
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
1362
|
+
[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", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 83], ["state", nil], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1363
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 83
|
1364
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1365
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 83]]
|
1366
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 83[0m
|
1367
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
1368
|
+
Parameters: {"id"=>"42", "post_id"=>"83", "use_route"=>"blogit"}
|
1369
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "83"]]
|
1370
|
+
[1m[36mBlogit::Comment Load (0.0ms)[0m [1mSELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 83 AND "blog_comments"."id" = ? LIMIT 1[0m [["id", "42"]]
|
1371
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 83 LIMIT 1
|
1372
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 83[0m
|
1373
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 42]]
|
1374
|
+
Redirected to http://test.host/blog/posts/83-tis-is-a-blog-post-title
|
1375
|
+
Completed 302 Found in 8ms
|
1376
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 83]]
|
1377
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 83
|
1378
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1379
|
+
[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", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 83], ["state", nil], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1380
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 83[0m
|
1381
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1382
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
1383
|
+
Parameters: {"id"=>"43", "post_id"=>"83", "use_route"=>"blogit"}
|
1384
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "83"]]
|
1385
|
+
[1m[35mBlogit::Comment Load (0.0ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 83 AND "blog_comments"."id" = ? LIMIT 1 [["id", "43"]]
|
1386
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 83 LIMIT 1[0m
|
1387
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 83
|
1388
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 43]]
|
1389
|
+
Redirected to http://test.host/blog/posts/83-tis-is-a-blog-post-title
|
1390
|
+
Completed 302 Found in 7ms
|
1391
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
1392
|
+
[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", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 83], ["state", nil], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1393
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 83
|
1394
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
1395
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
1396
|
+
Parameters: {"id"=>"44", "post_id"=>"83", "use_route"=>"blogit"}
|
1397
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
1398
|
+
Redirected to http://test.host/blog/
|
1399
|
+
Completed 302 Found in 1ms
|
1400
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
1401
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
1402
|
+
[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", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 83], ["state", nil], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1403
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 83
|
1404
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
1405
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
1406
|
+
Parameters: {"id"=>"45", "post_id"=>"83", "use_route"=>"blogit"}
|
1407
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
1408
|
+
Redirected to http://test.host/blog/
|
1409
|
+
Completed 302 Found in 1ms
|
1410
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
1411
|
+
Processing by Blogit::PostsController#index as HTML
|
1412
|
+
Parameters: {"page"=>"", "use_route"=>"blogit"}
|
1413
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
1414
|
+
Processing by Blogit::PostsController#index as HTML
|
1415
|
+
Parameters: {"page"=>"2", "use_route"=>"blogit"}
|
1416
|
+
Completed 200 OK in 29ms (Views: 28.7ms | ActiveRecord: 0.0ms)
|
1417
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1418
|
+
Processing by Blogit::PostsController#new as HTML
|
1419
|
+
Parameters: {"use_route"=>"blogit"}
|
1420
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
1421
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1422
|
+
Processing by Blogit::PostsController#new as HTML
|
1423
|
+
Parameters: {"use_route"=>"blogit"}
|
1424
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1425
|
+
Processing by Blogit::PostsController#new as HTML
|
1426
|
+
Parameters: {"use_route"=>"blogit"}
|
1427
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
1428
|
+
Redirected to http://test.host/blog/
|
1429
|
+
Completed 302 Found in 1ms
|
1430
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1431
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "bodacious"]]
|
1432
|
+
Processing by Blogit::PostsController#create as HTML
|
1433
|
+
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"}
|
1434
|
+
Redirected to http://test.host/blog/posts
|
1435
|
+
Completed 302 Found in 1ms
|
1436
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1437
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "bodacious"]]
|
1438
|
+
Processing by Blogit::PostsController#edit as HTML
|
1439
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1440
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
1441
|
+
Processing by Blogit::PostsController#edit as HTML
|
1442
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1443
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
1444
|
+
Redirected to http://test.host/blog/
|
1445
|
+
Completed 302 Found in 1ms
|
1446
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1447
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "bodacious"]]
|
1448
|
+
Processing by Blogit::PostsController#update as HTML
|
1449
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
1450
|
+
Redirected to http://test.host/blog/posts
|
1451
|
+
Completed 302 Found in 1ms
|
1452
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1453
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "bodacious"]]
|
1454
|
+
Processing by Blogit::PostsController#update as HTML
|
1455
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
1456
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 137], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["title", "Something new"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00]]
|
1457
|
+
Redirected to http://test.host/blog/posts/98-something-new
|
1458
|
+
Completed 302 Found in 6ms
|
1459
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1460
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "bodacious"]]
|
1461
|
+
Processing by Blogit::PostsController#update as HTML
|
1462
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
1463
|
+
[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", 138], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["title", "Something new"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00]]
|
1464
|
+
Redirected to http://test.host/blog/posts/99-something-new
|
1465
|
+
Completed 302 Found in 6ms
|
1466
|
+
Processing by Blogit::PostsController#update as HTML
|
1467
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
1468
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
1469
|
+
Redirected to http://test.host/blog/
|
1470
|
+
Completed 302 Found in 1ms
|
1471
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "bodacious"]]
|
1472
|
+
Processing by Blogit::PostsController#show as HTML
|
1473
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1474
|
+
Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
1475
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1476
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "bodacious"]]
|
1477
|
+
Processing by Blogit::PostsController#destroy as HTML
|
1478
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1479
|
+
Redirected to http://test.host/blog/posts
|
1480
|
+
Completed 302 Found in 1ms
|
1481
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1482
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "bodacious"]]
|
1483
|
+
Processing by Blogit::PostsController#destroy as HTML
|
1484
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1485
|
+
Redirected to http://test.host/blog/posts
|
1486
|
+
Completed 302 Found in 5ms
|
1487
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1488
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "bodacious"]]
|
1489
|
+
Processing by Blogit::PostsController#destroy as HTML
|
1490
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1491
|
+
Redirected to http://test.host/blog/posts
|
1492
|
+
Completed 302 Found in 1ms
|
1493
|
+
Processing by Blogit::PostsController#destroy as HTML
|
1494
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1495
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
1496
|
+
Redirected to http://test.host/blog/
|
1497
|
+
Completed 302 Found in 1ms
|
1498
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "bodacious"]]
|
1499
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 143], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00]]
|
1500
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "bodacious"]]
|
1501
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 144], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00]]
|
1502
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "bodacious"]]
|
1503
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 145], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00]]
|
1504
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "bodacious"]]
|
1505
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 146], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00]]
|
1506
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "bodacious"]]
|
1507
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 147], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00]]
|
1508
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "bodacious"]]
|
1509
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 148], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00]]
|
1510
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "bodacious"]]
|
1511
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 149], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00]]
|
1512
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "Jeronimo"]]
|
1513
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 150 LIMIT 1
|
1514
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "Jeronimo"]]
|
1515
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 151 LIMIT 1
|
1516
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1517
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 83 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1518
|
+
[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" = 83 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1519
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 83]]
|
1520
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 84 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1521
|
+
[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" = 84 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1522
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 84]]
|
1523
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 85 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1524
|
+
[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" = 85 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1525
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 85]]
|
1526
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 86 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1527
|
+
[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" = 86 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1528
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 86]]
|
1529
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 87 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1530
|
+
[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" = 87 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1531
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 87]]
|
1532
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 88 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1533
|
+
[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" = 88 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1534
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 88]]
|
1535
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 89 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1536
|
+
[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" = 89 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1537
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 89]]
|
1538
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 90 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1539
|
+
[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" = 90 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1540
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 90]]
|
1541
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 91 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1542
|
+
[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" = 91 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1543
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 91]]
|
1544
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 92 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1545
|
+
[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" = 92 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1546
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 92]]
|
1547
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 93 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1548
|
+
[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" = 93 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1549
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 93]]
|
1550
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 94 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1551
|
+
[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" = 94 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1552
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 94]]
|
1553
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 95 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1554
|
+
[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" = 95 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1555
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 95]]
|
1556
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 96 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1557
|
+
[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" = 96 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1558
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 96]]
|
1559
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 97 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1560
|
+
[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" = 97 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1561
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 97]]
|
1562
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 98 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1563
|
+
[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" = 98 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1564
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 98]]
|
1565
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 99 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1566
|
+
[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" = 99 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1567
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 99]]
|
1568
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 100 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1569
|
+
[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" = 100 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1570
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 100]]
|
1571
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 101 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1572
|
+
[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" = 101 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1573
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 101]]
|
1574
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 102 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1575
|
+
[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" = 102 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1576
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 102]]
|
1577
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 103 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1578
|
+
[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" = 103 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1579
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 103]]
|
1580
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 104 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1581
|
+
[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" = 104 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1582
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 104]]
|
1583
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 105 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1584
|
+
[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" = 105 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1585
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 105]]
|
1586
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 106 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1587
|
+
[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" = 106 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1588
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 106]]
|
1589
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "bodacious"]]
|
1590
|
+
[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", 152], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00]]
|
1591
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["username", "bodacious"]]
|
1592
|
+
[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", 153], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:51 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Nov 2011 22:40:51 UTC +00:00]]
|
1593
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["username", "bodacious"]]
|
1594
|
+
[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", 154], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 16 Nov 2011 22:40:52 UTC +00:00]]
|
1595
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["username", "bodacious"]]
|
1596
|
+
[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", 155], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 15 Nov 2011 22:40:52 UTC +00:00]]
|
1597
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["username", "bodacious"]]
|
1598
|
+
[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", 156], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 14 Nov 2011 22:40:52 UTC +00:00]]
|
1599
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["username", "bodacious"]]
|
1600
|
+
[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", 157], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 13 Nov 2011 22:40:52 UTC +00:00]]
|
1601
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["username", "bodacious"]]
|
1602
|
+
[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", 158], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 12 Nov 2011 22:40:52 UTC +00:00]]
|
1603
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["username", "bodacious"]]
|
1604
|
+
[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", 159], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 11 Nov 2011 22:40:52 UTC +00:00]]
|
1605
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["username", "bodacious"]]
|
1606
|
+
[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", 160], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 10 Nov 2011 22:40:52 UTC +00:00]]
|
1607
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["username", "bodacious"]]
|
1608
|
+
[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", 161], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 09 Nov 2011 22:40:52 UTC +00:00]]
|
1609
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["username", "bodacious"]]
|
1610
|
+
[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", 162], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 08 Nov 2011 22:40:52 UTC +00:00]]
|
1611
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["username", "bodacious"]]
|
1612
|
+
[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", 163], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 07 Nov 2011 22:40:52 UTC +00:00]]
|
1613
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["username", "bodacious"]]
|
1614
|
+
[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", 164], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 06 Nov 2011 22:40:52 UTC +00:00]]
|
1615
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["username", "bodacious"]]
|
1616
|
+
[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", 165], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 05 Nov 2011 22:40:52 UTC +00:00]]
|
1617
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["password", "password"], ["updated_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["username", "bodacious"]]
|
1618
|
+
[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", 166], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 18 Nov 2011 22:40:52 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 04 Nov 2011 22:40:52 UTC +00:00]]
|
1619
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0
|
1620
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1[0m
|
1621
|
+
[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
|
1622
|
+
[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
|
1623
|
+
[1m[36mBlogit::Post Load (4.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1624
|
+
[1m[35m (11.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 107
|
1625
|
+
Processing by Blogit::CommentsController#create as JS
|
1626
|
+
Parameters: {"post_id"=>"107", "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"}
|
1627
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "107"]]
|
1628
|
+
[1m[35mSQL (37.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", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 107], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1629
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 107 LIMIT 1[0m
|
1630
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 107
|
1631
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.5ms)
|
1632
|
+
Completed 200 OK in 128ms (Views: 58.7ms | ActiveRecord: 38.1ms)
|
1633
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 107[0m
|
1634
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
1635
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 107[0m
|
1636
|
+
Processing by Blogit::CommentsController#create as HTML
|
1637
|
+
Parameters: {"post_id"=>"107", "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"}
|
1638
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "107"]]
|
1639
|
+
[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", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 107], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1640
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 107 LIMIT 1
|
1641
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 107[0m
|
1642
|
+
Redirected to http://test.host/blog/posts/107-tis-is-a-blog-post-title
|
1643
|
+
Completed 302 Found in 92ms
|
1644
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 107
|
1645
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1646
|
+
Processing by Blogit::CommentsController#create as HTML
|
1647
|
+
Parameters: {"post_id"=>"107", "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"}
|
1648
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "107"]]
|
1649
|
+
[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", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 107], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1650
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 107 LIMIT 1
|
1651
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 107[0m
|
1652
|
+
Redirected to http://test.host/blog/posts/107-tis-is-a-blog-post-title
|
1653
|
+
Completed 302 Found in 8ms
|
1654
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
1655
|
+
Processing by Blogit::CommentsController#create as HTML
|
1656
|
+
Parameters: {"post_id"=>"107", "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"}
|
1657
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "107"]]
|
1658
|
+
[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", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 107], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1659
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 107 LIMIT 1[0m
|
1660
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 107
|
1661
|
+
Redirected to http://test.host/blog/posts/107-tis-is-a-blog-post-title
|
1662
|
+
Completed 302 Found in 10ms
|
1663
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1664
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 107], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1665
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 107[0m
|
1666
|
+
[1m[35mUser Load (44.8ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1667
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 107]]
|
1668
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 107
|
1669
|
+
Processing by Blogit::CommentsController#destroy as JS
|
1670
|
+
Parameters: {"id"=>"50", "post_id"=>"107", "use_route"=>"blogit"}
|
1671
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "107"]]
|
1672
|
+
[1m[35mBlogit::Comment Load (0.1ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 107 AND "blog_comments"."id" = ? LIMIT 1 [["id", "50"]]
|
1673
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 107 LIMIT 1[0m
|
1674
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 107
|
1675
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 50]]
|
1676
|
+
Completed 200 OK in 8ms (Views: 1.6ms | ActiveRecord: 0.5ms)
|
1677
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 107]]
|
1678
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 107[0m
|
1679
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
1680
|
+
[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", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 107], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1681
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 107
|
1682
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1683
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 107]]
|
1684
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 107[0m
|
1685
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
1686
|
+
Parameters: {"id"=>"51", "post_id"=>"107", "use_route"=>"blogit"}
|
1687
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "107"]]
|
1688
|
+
[1m[36mBlogit::Comment Load (0.0ms)[0m [1mSELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 107 AND "blog_comments"."id" = ? LIMIT 1[0m [["id", "51"]]
|
1689
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 107 LIMIT 1
|
1690
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 107[0m
|
1691
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 51]]
|
1692
|
+
Redirected to http://test.host/blog/posts/107-tis-is-a-blog-post-title
|
1693
|
+
Completed 302 Found in 8ms
|
1694
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 107]]
|
1695
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 107
|
1696
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
1697
|
+
[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", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 107], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1698
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 107[0m
|
1699
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1700
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
1701
|
+
Parameters: {"id"=>"52", "post_id"=>"107", "use_route"=>"blogit"}
|
1702
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "107"]]
|
1703
|
+
[1m[35mBlogit::Comment Load (0.1ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 107 AND "blog_comments"."id" = ? LIMIT 1 [["id", "52"]]
|
1704
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 107 LIMIT 1[0m
|
1705
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 107
|
1706
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 52]]
|
1707
|
+
Redirected to http://test.host/blog/posts/107-tis-is-a-blog-post-title
|
1708
|
+
Completed 302 Found in 7ms
|
1709
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
1710
|
+
[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", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 107], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1711
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 107
|
1712
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
1713
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
1714
|
+
Parameters: {"id"=>"53", "post_id"=>"107", "use_route"=>"blogit"}
|
1715
|
+
[1m[35mUser Load (47.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
1716
|
+
Redirected to http://test.host/blog/
|
1717
|
+
Completed 302 Found in 48ms
|
1718
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
1719
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
1720
|
+
[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", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 107], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
1721
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 107
|
1722
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
1723
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
1724
|
+
Parameters: {"id"=>"54", "post_id"=>"107", "use_route"=>"blogit"}
|
1725
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
1726
|
+
Redirected to http://test.host/blog/
|
1727
|
+
Completed 302 Found in 1ms
|
1728
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
1729
|
+
Processing by Blogit::PostsController#index as HTML
|
1730
|
+
Parameters: {"page"=>"", "use_route"=>"blogit"}
|
1731
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
1732
|
+
Processing by Blogit::PostsController#index as HTML
|
1733
|
+
Parameters: {"page"=>"2", "use_route"=>"blogit"}
|
1734
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1735
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1736
|
+
Processing by Blogit::PostsController#new as HTML
|
1737
|
+
Parameters: {"use_route"=>"blogit"}
|
1738
|
+
Completed 200 OK in 7ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
1739
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1740
|
+
Processing by Blogit::PostsController#new as HTML
|
1741
|
+
Parameters: {"use_route"=>"blogit"}
|
1742
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1743
|
+
Processing by Blogit::PostsController#new as HTML
|
1744
|
+
Parameters: {"use_route"=>"blogit"}
|
1745
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
1746
|
+
Redirected to http://test.host/blog/
|
1747
|
+
Completed 302 Found in 1ms
|
1748
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1749
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["username", "bodacious"]]
|
1750
|
+
Processing by Blogit::PostsController#create as HTML
|
1751
|
+
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"}
|
1752
|
+
Redirected to http://test.host/blog/posts
|
1753
|
+
Completed 302 Found in 1ms
|
1754
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1755
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["username", "bodacious"]]
|
1756
|
+
Processing by Blogit::PostsController#edit as HTML
|
1757
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1758
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
1759
|
+
Processing by Blogit::PostsController#edit as HTML
|
1760
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1761
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
1762
|
+
Redirected to http://test.host/blog/
|
1763
|
+
Completed 302 Found in 1ms
|
1764
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1765
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["username", "bodacious"]]
|
1766
|
+
Processing by Blogit::PostsController#update as HTML
|
1767
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
1768
|
+
Redirected to http://test.host/blog/posts
|
1769
|
+
Completed 302 Found in 1ms
|
1770
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1771
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["username", "bodacious"]]
|
1772
|
+
Processing by Blogit::PostsController#update as HTML
|
1773
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
1774
|
+
[1m[35mSQL (14.6ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 170], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00]]
|
1775
|
+
Redirected to http://test.host/blog/posts/122-something-new
|
1776
|
+
Completed 302 Found in 21ms
|
1777
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1778
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["username", "bodacious"]]
|
1779
|
+
Processing by Blogit::PostsController#update as HTML
|
1780
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
1781
|
+
[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", 171], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00]]
|
1782
|
+
Redirected to http://test.host/blog/posts/123-something-new
|
1783
|
+
Completed 302 Found in 6ms
|
1784
|
+
Processing by Blogit::PostsController#update as HTML
|
1785
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
1786
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
1787
|
+
Redirected to http://test.host/blog/
|
1788
|
+
Completed 302 Found in 1ms
|
1789
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["username", "bodacious"]]
|
1790
|
+
Processing by Blogit::PostsController#show as HTML
|
1791
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1792
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
1793
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1794
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["username", "bodacious"]]
|
1795
|
+
Processing by Blogit::PostsController#destroy as HTML
|
1796
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1797
|
+
Redirected to http://test.host/blog/posts
|
1798
|
+
Completed 302 Found in 1ms
|
1799
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1800
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["username", "bodacious"]]
|
1801
|
+
Processing by Blogit::PostsController#destroy as HTML
|
1802
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1803
|
+
Redirected to http://test.host/blog/posts
|
1804
|
+
Completed 302 Found in 11ms
|
1805
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1806
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:11 UTC +00:00], ["username", "bodacious"]]
|
1807
|
+
Processing by Blogit::PostsController#destroy as HTML
|
1808
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1809
|
+
Redirected to http://test.host/blog/posts
|
1810
|
+
Completed 302 Found in 1ms
|
1811
|
+
Processing by Blogit::PostsController#destroy as HTML
|
1812
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1813
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
1814
|
+
Redirected to http://test.host/blog/
|
1815
|
+
Completed 302 Found in 1ms
|
1816
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1817
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 176], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00]]
|
1818
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1819
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 177], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00]]
|
1820
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1821
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 178], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00]]
|
1822
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1823
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 179], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00]]
|
1824
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1825
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 180], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00]]
|
1826
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1827
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 181], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00]]
|
1828
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1829
|
+
[1m[35mSQL (28.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 182], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00]]
|
1830
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "Jeronimo"]]
|
1831
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 183 LIMIT 1
|
1832
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "Jeronimo"]]
|
1833
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 184 LIMIT 1
|
1834
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
1835
|
+
[1m[35mActsAsTaggableOn::Tagging Load (11.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 107 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1836
|
+
[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" = 107 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1837
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 107]]
|
1838
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 108 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1839
|
+
[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" = 108 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1840
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 108]]
|
1841
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 109 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1842
|
+
[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" = 109 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1843
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 109]]
|
1844
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 110 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1845
|
+
[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" = 110 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1846
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 110]]
|
1847
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 111 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1848
|
+
[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" = 111 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1849
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 111]]
|
1850
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 112 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1851
|
+
[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" = 112 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1852
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 112]]
|
1853
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 113 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1854
|
+
[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" = 113 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1855
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 113]]
|
1856
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 114 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1857
|
+
[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" = 114 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1858
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 114]]
|
1859
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 115 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1860
|
+
[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" = 115 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1861
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 115]]
|
1862
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 116 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1863
|
+
[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" = 116 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1864
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 116]]
|
1865
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 117 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1866
|
+
[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" = 117 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1867
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 117]]
|
1868
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 118 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1869
|
+
[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" = 118 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1870
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 118]]
|
1871
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 119 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1872
|
+
[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" = 119 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1873
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 119]]
|
1874
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 120 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1875
|
+
[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" = 120 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1876
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 120]]
|
1877
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 121 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1878
|
+
[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" = 121 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1879
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 121]]
|
1880
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 122 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1881
|
+
[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" = 122 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1882
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 122]]
|
1883
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 123 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1884
|
+
[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" = 123 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1885
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 123]]
|
1886
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 124 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1887
|
+
[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" = 124 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1888
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 124]]
|
1889
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 125 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1890
|
+
[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" = 125 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1891
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 125]]
|
1892
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 126 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1893
|
+
[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" = 126 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1894
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 126]]
|
1895
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 127 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1896
|
+
[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" = 127 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1897
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 127]]
|
1898
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 128 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1899
|
+
[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" = 128 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1900
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 128]]
|
1901
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 129 AND "taggings"."taggable_type" = 'Blogit::Post'
|
1902
|
+
[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" = 129 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
1903
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 129]]
|
1904
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 130 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
1905
|
+
[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" = 130 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
1906
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 130]]
|
1907
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1908
|
+
[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", 185], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00]]
|
1909
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1910
|
+
[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", 186], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 28 Nov 2011 20:30:14 UTC +00:00]]
|
1911
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1912
|
+
[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", 187], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 27 Nov 2011 20:30:14 UTC +00:00]]
|
1913
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1914
|
+
[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", 188], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 26 Nov 2011 20:30:14 UTC +00:00]]
|
1915
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1916
|
+
[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", 189], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 25 Nov 2011 20:30:14 UTC +00:00]]
|
1917
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1918
|
+
[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", 190], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 24 Nov 2011 20:30:14 UTC +00:00]]
|
1919
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1920
|
+
[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", 191], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 23 Nov 2011 20:30:14 UTC +00:00]]
|
1921
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1922
|
+
[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", 192], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 22 Nov 2011 20:30:14 UTC +00:00]]
|
1923
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1924
|
+
[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", 193], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 21 Nov 2011 20:30:14 UTC +00:00]]
|
1925
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1926
|
+
[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", 194], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 20 Nov 2011 20:30:14 UTC +00:00]]
|
1927
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1928
|
+
[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", 195], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 19 Nov 2011 20:30:14 UTC +00:00]]
|
1929
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1930
|
+
[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", 196], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 20:30:14 UTC +00:00]]
|
1931
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1932
|
+
[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", 197], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Nov 2011 20:30:14 UTC +00:00]]
|
1933
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1934
|
+
[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", 198], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 16 Nov 2011 20:30:14 UTC +00:00]]
|
1935
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["username", "bodacious"]]
|
1936
|
+
[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", 199], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:30:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 15 Nov 2011 20:30:14 UTC +00:00]]
|
1937
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0
|
1938
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1[0m
|
1939
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 25 OFFSET 0) subquery_for_count
|
1940
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 5[0m
|
1941
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 25 OFFSET 25
|
1942
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count [0m
|
1943
|
+
Processing by Blogit::PostsController#index as HTML
|
1944
|
+
Parameters: {"page"=>"", "use_route"=>"blogit"}
|
1945
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (9.5ms)
|
1946
|
+
Completed 200 OK in 41ms (Views: 40.7ms | ActiveRecord: 0.0ms)
|
1947
|
+
Processing by Blogit::PostsController#index as HTML
|
1948
|
+
Parameters: {"page"=>"2", "use_route"=>"blogit"}
|
1949
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1950
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1951
|
+
Processing by Blogit::PostsController#new as HTML
|
1952
|
+
Parameters: {"use_route"=>"blogit"}
|
1953
|
+
Completed 200 OK in 82ms (Views: 1.3ms | ActiveRecord: 0.2ms)
|
1954
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1955
|
+
Processing by Blogit::PostsController#new as HTML
|
1956
|
+
Parameters: {"use_route"=>"blogit"}
|
1957
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1958
|
+
Processing by Blogit::PostsController#new as HTML
|
1959
|
+
Parameters: {"use_route"=>"blogit"}
|
1960
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
1961
|
+
Redirected to http://test.host/blog/
|
1962
|
+
Completed 302 Found in 7ms
|
1963
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1964
|
+
[1m[36mSQL (11.9ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["username", "bodacious"]]
|
1965
|
+
Processing by Blogit::PostsController#create as HTML
|
1966
|
+
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"}
|
1967
|
+
Redirected to http://test.host/blog/posts
|
1968
|
+
Completed 302 Found in 1ms
|
1969
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1970
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["username", "bodacious"]]
|
1971
|
+
Processing by Blogit::PostsController#edit as HTML
|
1972
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1973
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
1974
|
+
Processing by Blogit::PostsController#edit as HTML
|
1975
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
1976
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
1977
|
+
Redirected to http://test.host/blog/
|
1978
|
+
Completed 302 Found in 1ms
|
1979
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1980
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["username", "bodacious"]]
|
1981
|
+
Processing by Blogit::PostsController#update as HTML
|
1982
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
1983
|
+
Redirected to http://test.host/blog/posts
|
1984
|
+
Completed 302 Found in 1ms
|
1985
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
1986
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["username", "bodacious"]]
|
1987
|
+
Processing by Blogit::PostsController#update as HTML
|
1988
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
1989
|
+
[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", 203], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00]]
|
1990
|
+
Redirected to http://test.host/blog/posts/146-something-new
|
1991
|
+
Completed 302 Found in 98ms
|
1992
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
1993
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["username", "bodacious"]]
|
1994
|
+
Processing by Blogit::PostsController#update as HTML
|
1995
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
1996
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 204], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00]]
|
1997
|
+
Redirected to http://test.host/blog/posts/147-something-new
|
1998
|
+
Completed 302 Found in 6ms
|
1999
|
+
Processing by Blogit::PostsController#update as HTML
|
2000
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2001
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
2002
|
+
Redirected to http://test.host/blog/
|
2003
|
+
Completed 302 Found in 1ms
|
2004
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["username", "bodacious"]]
|
2005
|
+
Processing by Blogit::PostsController#show as HTML
|
2006
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2007
|
+
Completed 200 OK in 34ms (Views: 1.3ms | ActiveRecord: 0.2ms)
|
2008
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2009
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["username", "bodacious"]]
|
2010
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2011
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2012
|
+
Redirected to http://test.host/blog/posts
|
2013
|
+
Completed 302 Found in 1ms
|
2014
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2015
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["username", "bodacious"]]
|
2016
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2017
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2018
|
+
Redirected to http://test.host/blog/posts
|
2019
|
+
Completed 302 Found in 11ms
|
2020
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2021
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:13 UTC +00:00], ["username", "bodacious"]]
|
2022
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2023
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2024
|
+
Redirected to http://test.host/blog/posts
|
2025
|
+
Completed 302 Found in 1ms
|
2026
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2027
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2028
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
2029
|
+
Redirected to http://test.host/blog/
|
2030
|
+
Completed 302 Found in 1ms
|
2031
|
+
Processing by Blogit::PostsController#index as HTML
|
2032
|
+
Parameters: {"page"=>"", "use_route"=>"blogit"}
|
2033
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (9.4ms)
|
2034
|
+
Completed 200 OK in 39ms (Views: 39.0ms | ActiveRecord: 0.0ms)
|
2035
|
+
Processing by Blogit::PostsController#index as HTML
|
2036
|
+
Parameters: {"page"=>"2", "use_route"=>"blogit"}
|
2037
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
2038
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2039
|
+
Processing by Blogit::PostsController#new as HTML
|
2040
|
+
Parameters: {"use_route"=>"blogit"}
|
2041
|
+
Completed 200 OK in 80ms (Views: 1.3ms | ActiveRecord: 0.2ms)
|
2042
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2043
|
+
Processing by Blogit::PostsController#new as HTML
|
2044
|
+
Parameters: {"use_route"=>"blogit"}
|
2045
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2046
|
+
Processing by Blogit::PostsController#new as HTML
|
2047
|
+
Parameters: {"use_route"=>"blogit"}
|
2048
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
2049
|
+
Redirected to http://test.host/blog/
|
2050
|
+
Completed 302 Found in 6ms
|
2051
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2052
|
+
[1m[36mSQL (11.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["username", "bodacious"]]
|
2053
|
+
Processing by Blogit::PostsController#create as HTML
|
2054
|
+
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"}
|
2055
|
+
Redirected to http://test.host/blog/posts
|
2056
|
+
Completed 302 Found in 1ms
|
2057
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2058
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["username", "bodacious"]]
|
2059
|
+
Processing by Blogit::PostsController#edit as HTML
|
2060
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2061
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
2062
|
+
Processing by Blogit::PostsController#edit as HTML
|
2063
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2064
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
2065
|
+
Redirected to http://test.host/blog/
|
2066
|
+
Completed 302 Found in 1ms
|
2067
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2068
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["username", "bodacious"]]
|
2069
|
+
Processing by Blogit::PostsController#update as HTML
|
2070
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2071
|
+
Redirected to http://test.host/blog/posts
|
2072
|
+
Completed 302 Found in 1ms
|
2073
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2074
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["username", "bodacious"]]
|
2075
|
+
Processing by Blogit::PostsController#update as HTML
|
2076
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2077
|
+
[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", 212], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00]]
|
2078
|
+
Redirected to http://test.host/blog/posts/148-something-new
|
2079
|
+
Completed 302 Found in 94ms
|
2080
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2081
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["username", "bodacious"]]
|
2082
|
+
Processing by Blogit::PostsController#update as HTML
|
2083
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2084
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 213], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00]]
|
2085
|
+
Redirected to http://test.host/blog/posts/149-something-new
|
2086
|
+
Completed 302 Found in 6ms
|
2087
|
+
Processing by Blogit::PostsController#update as HTML
|
2088
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2089
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
2090
|
+
Redirected to http://test.host/blog/
|
2091
|
+
Completed 302 Found in 1ms
|
2092
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["username", "bodacious"]]
|
2093
|
+
Processing by Blogit::PostsController#show as HTML
|
2094
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2095
|
+
Completed 200 OK in 34ms (Views: 1.3ms | ActiveRecord: 0.2ms)
|
2096
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2097
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["username", "bodacious"]]
|
2098
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2099
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2100
|
+
Redirected to http://test.host/blog/posts
|
2101
|
+
Completed 302 Found in 1ms
|
2102
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2103
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["username", "bodacious"]]
|
2104
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2105
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2106
|
+
Redirected to http://test.host/blog/posts
|
2107
|
+
Completed 302 Found in 11ms
|
2108
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2109
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:26 UTC +00:00], ["username", "bodacious"]]
|
2110
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2111
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2112
|
+
Redirected to http://test.host/blog/posts
|
2113
|
+
Completed 302 Found in 1ms
|
2114
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2115
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2116
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
2117
|
+
Redirected to http://test.host/blog/
|
2118
|
+
Completed 302 Found in 1ms
|
2119
|
+
Processing by Blogit::PostsController#index as HTML
|
2120
|
+
Parameters: {"page"=>"", "use_route"=>"blogit"}
|
2121
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (9.4ms)
|
2122
|
+
Completed 200 OK in 39ms (Views: 38.9ms | ActiveRecord: 0.0ms)
|
2123
|
+
Processing by Blogit::PostsController#index as HTML
|
2124
|
+
Parameters: {"page"=>"2", "use_route"=>"blogit"}
|
2125
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
2126
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2127
|
+
Processing by Blogit::PostsController#new as HTML
|
2128
|
+
Parameters: {"use_route"=>"blogit"}
|
2129
|
+
Completed 200 OK in 78ms (Views: 1.2ms | ActiveRecord: 0.2ms)
|
2130
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2131
|
+
Processing by Blogit::PostsController#new as HTML
|
2132
|
+
Parameters: {"use_route"=>"blogit"}
|
2133
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2134
|
+
Processing by Blogit::PostsController#new as HTML
|
2135
|
+
Parameters: {"use_route"=>"blogit"}
|
2136
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
2137
|
+
Redirected to http://test.host/blog/
|
2138
|
+
Completed 302 Found in 6ms
|
2139
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2140
|
+
[1m[36mSQL (11.1ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:31:50 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:50 UTC +00:00], ["username", "bodacious"]]
|
2141
|
+
Processing by Blogit::PostsController#create as HTML
|
2142
|
+
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"}
|
2143
|
+
Redirected to http://test.host/blog/posts
|
2144
|
+
Completed 302 Found in 1ms
|
2145
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2146
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:31:50 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:50 UTC +00:00], ["username", "bodacious"]]
|
2147
|
+
Processing by Blogit::PostsController#edit as HTML
|
2148
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2149
|
+
Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
2150
|
+
Processing by Blogit::PostsController#edit as HTML
|
2151
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2152
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
2153
|
+
Redirected to http://test.host/blog/
|
2154
|
+
Completed 302 Found in 1ms
|
2155
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2156
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:31:50 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:50 UTC +00:00], ["username", "bodacious"]]
|
2157
|
+
Processing by Blogit::PostsController#update as HTML
|
2158
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2159
|
+
Redirected to http://test.host/blog/posts
|
2160
|
+
Completed 302 Found in 1ms
|
2161
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2162
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:31:50 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:50 UTC +00:00], ["username", "bodacious"]]
|
2163
|
+
Processing by Blogit::PostsController#update as HTML
|
2164
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2165
|
+
[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", 221], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:31:50 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:31:50 UTC +00:00]]
|
2166
|
+
Redirected to http://test.host/blog/posts/150-something-new
|
2167
|
+
Completed 302 Found in 91ms
|
2168
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2169
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:31:51 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:51 UTC +00:00], ["username", "bodacious"]]
|
2170
|
+
Processing by Blogit::PostsController#update as HTML
|
2171
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2172
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 222], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:31:51 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:31:51 UTC +00:00]]
|
2173
|
+
Redirected to http://test.host/blog/posts/151-something-new
|
2174
|
+
Completed 302 Found in 6ms
|
2175
|
+
Processing by Blogit::PostsController#update as HTML
|
2176
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2177
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
2178
|
+
Redirected to http://test.host/blog/
|
2179
|
+
Completed 302 Found in 1ms
|
2180
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:31:51 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:51 UTC +00:00], ["username", "bodacious"]]
|
2181
|
+
Processing by Blogit::PostsController#show as HTML
|
2182
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2183
|
+
Completed 200 OK in 34ms (Views: 1.3ms | ActiveRecord: 0.2ms)
|
2184
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2185
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:31:51 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:51 UTC +00:00], ["username", "bodacious"]]
|
2186
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2187
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2188
|
+
Redirected to http://test.host/blog/posts
|
2189
|
+
Completed 302 Found in 1ms
|
2190
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2191
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:31:51 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:51 UTC +00:00], ["username", "bodacious"]]
|
2192
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2193
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2194
|
+
Redirected to http://test.host/blog/posts
|
2195
|
+
Completed 302 Found in 11ms
|
2196
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2197
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:31:51 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:31:51 UTC +00:00], ["username", "bodacious"]]
|
2198
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2199
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2200
|
+
Redirected to http://test.host/blog/posts
|
2201
|
+
Completed 302 Found in 1ms
|
2202
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2203
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2204
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
2205
|
+
Redirected to http://test.host/blog/
|
2206
|
+
Completed 302 Found in 1ms
|
2207
|
+
Processing by Blogit::PostsController#index as HTML
|
2208
|
+
Parameters: {"page"=>"", "use_route"=>"blogit"}
|
2209
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (9.5ms)
|
2210
|
+
Completed 200 OK in 40ms (Views: 39.8ms | ActiveRecord: 0.0ms)
|
2211
|
+
Processing by Blogit::PostsController#index as HTML
|
2212
|
+
Parameters: {"page"=>"2", "use_route"=>"blogit"}
|
2213
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2214
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2215
|
+
Processing by Blogit::PostsController#new as HTML
|
2216
|
+
Parameters: {"use_route"=>"blogit"}
|
2217
|
+
Completed 200 OK in 79ms (Views: 1.3ms | ActiveRecord: 0.2ms)
|
2218
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2219
|
+
Processing by Blogit::PostsController#new as HTML
|
2220
|
+
Parameters: {"use_route"=>"blogit"}
|
2221
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2222
|
+
Processing by Blogit::PostsController#new as HTML
|
2223
|
+
Parameters: {"use_route"=>"blogit"}
|
2224
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
2225
|
+
Redirected to http://test.host/blog/
|
2226
|
+
Completed 302 Found in 6ms
|
2227
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2228
|
+
[1m[36mSQL (11.6ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:23 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:23 UTC +00:00], ["username", "bodacious"]]
|
2229
|
+
Processing by Blogit::PostsController#create as HTML
|
2230
|
+
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"}
|
2231
|
+
Redirected to http://test.host/blog/posts
|
2232
|
+
Completed 302 Found in 1ms
|
2233
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2234
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:23 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:23 UTC +00:00], ["username", "bodacious"]]
|
2235
|
+
Processing by Blogit::PostsController#edit as HTML
|
2236
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2237
|
+
Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
2238
|
+
Processing by Blogit::PostsController#edit as HTML
|
2239
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2240
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
2241
|
+
Redirected to http://test.host/blog/
|
2242
|
+
Completed 302 Found in 1ms
|
2243
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2244
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:23 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:23 UTC +00:00], ["username", "bodacious"]]
|
2245
|
+
Processing by Blogit::PostsController#update as HTML
|
2246
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2247
|
+
Redirected to http://test.host/blog/posts
|
2248
|
+
Completed 302 Found in 1ms
|
2249
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2250
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:23 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:23 UTC +00:00], ["username", "bodacious"]]
|
2251
|
+
Processing by Blogit::PostsController#update as HTML
|
2252
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2253
|
+
[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", 230], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:23 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:32:23 UTC +00:00]]
|
2254
|
+
Redirected to http://test.host/blog/posts/152-something-new
|
2255
|
+
Completed 302 Found in 110ms
|
2256
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2257
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:24 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:24 UTC +00:00], ["username", "bodacious"]]
|
2258
|
+
Processing by Blogit::PostsController#update as HTML
|
2259
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2260
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 231], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:24 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:32:24 UTC +00:00]]
|
2261
|
+
Redirected to http://test.host/blog/posts/153-something-new
|
2262
|
+
Completed 302 Found in 7ms
|
2263
|
+
Processing by Blogit::PostsController#update as HTML
|
2264
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2265
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
2266
|
+
Redirected to http://test.host/blog/
|
2267
|
+
Completed 302 Found in 2ms
|
2268
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:24 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:24 UTC +00:00], ["username", "bodacious"]]
|
2269
|
+
Processing by Blogit::PostsController#show as HTML
|
2270
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2271
|
+
Completed 200 OK in 41ms (Views: 1.7ms | ActiveRecord: 0.2ms)
|
2272
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2273
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:24 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:24 UTC +00:00], ["username", "bodacious"]]
|
2274
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2275
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2276
|
+
Redirected to http://test.host/blog/posts
|
2277
|
+
Completed 302 Found in 1ms
|
2278
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2279
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:24 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:24 UTC +00:00], ["username", "bodacious"]]
|
2280
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2281
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2282
|
+
Redirected to http://test.host/blog/posts
|
2283
|
+
Completed 302 Found in 12ms
|
2284
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2285
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:24 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:24 UTC +00:00], ["username", "bodacious"]]
|
2286
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2287
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2288
|
+
Redirected to http://test.host/blog/posts
|
2289
|
+
Completed 302 Found in 1ms
|
2290
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2291
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2292
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
2293
|
+
Redirected to http://test.host/blog/
|
2294
|
+
Completed 302 Found in 1ms
|
2295
|
+
Processing by Blogit::PostsController#index as HTML
|
2296
|
+
Parameters: {"page"=>"", "use_route"=>"blogit"}
|
2297
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (9.4ms)
|
2298
|
+
Completed 200 OK in 67ms (Views: 66.8ms | ActiveRecord: 0.0ms)
|
2299
|
+
Processing by Blogit::PostsController#index as HTML
|
2300
|
+
Parameters: {"page"=>"2", "use_route"=>"blogit"}
|
2301
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2302
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2303
|
+
Processing by Blogit::PostsController#new as HTML
|
2304
|
+
Parameters: {"use_route"=>"blogit"}
|
2305
|
+
Completed 200 OK in 79ms (Views: 1.3ms | ActiveRecord: 0.2ms)
|
2306
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2307
|
+
Processing by Blogit::PostsController#new as HTML
|
2308
|
+
Parameters: {"use_route"=>"blogit"}
|
2309
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2310
|
+
Processing by Blogit::PostsController#new as HTML
|
2311
|
+
Parameters: {"use_route"=>"blogit"}
|
2312
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
2313
|
+
Redirected to http://test.host/blog/
|
2314
|
+
Completed 302 Found in 6ms
|
2315
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2316
|
+
[1m[36mSQL (11.5ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:35 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:35 UTC +00:00], ["username", "bodacious"]]
|
2317
|
+
Processing by Blogit::PostsController#create as HTML
|
2318
|
+
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"}
|
2319
|
+
Redirected to http://test.host/blog/posts
|
2320
|
+
Completed 302 Found in 1ms
|
2321
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2322
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:35 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:35 UTC +00:00], ["username", "bodacious"]]
|
2323
|
+
Processing by Blogit::PostsController#edit as HTML
|
2324
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2325
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
2326
|
+
Processing by Blogit::PostsController#edit as HTML
|
2327
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2328
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
2329
|
+
Redirected to http://test.host/blog/
|
2330
|
+
Completed 302 Found in 1ms
|
2331
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2332
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:35 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:35 UTC +00:00], ["username", "bodacious"]]
|
2333
|
+
Processing by Blogit::PostsController#update as HTML
|
2334
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2335
|
+
Redirected to http://test.host/blog/posts
|
2336
|
+
Completed 302 Found in 1ms
|
2337
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2338
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:35 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:35 UTC +00:00], ["username", "bodacious"]]
|
2339
|
+
Processing by Blogit::PostsController#update as HTML
|
2340
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2341
|
+
[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", 239], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:35 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:32:35 UTC +00:00]]
|
2342
|
+
Redirected to http://test.host/blog/posts/154-something-new
|
2343
|
+
Completed 302 Found in 97ms
|
2344
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2345
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:35 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:35 UTC +00:00], ["username", "bodacious"]]
|
2346
|
+
Processing by Blogit::PostsController#update as HTML
|
2347
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2348
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 240], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:35 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:32:35 UTC +00:00]]
|
2349
|
+
Redirected to http://test.host/blog/posts/155-something-new
|
2350
|
+
Completed 302 Found in 7ms
|
2351
|
+
Processing by Blogit::PostsController#update as HTML
|
2352
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2353
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
2354
|
+
Redirected to http://test.host/blog/
|
2355
|
+
Completed 302 Found in 1ms
|
2356
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:35 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:35 UTC +00:00], ["username", "bodacious"]]
|
2357
|
+
Processing by Blogit::PostsController#show as HTML
|
2358
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2359
|
+
Completed 200 OK in 39ms (Views: 1.9ms | ActiveRecord: 0.2ms)
|
2360
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2361
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:36 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:36 UTC +00:00], ["username", "bodacious"]]
|
2362
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2363
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2364
|
+
Redirected to http://test.host/blog/posts
|
2365
|
+
Completed 302 Found in 1ms
|
2366
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2367
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:36 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:36 UTC +00:00], ["username", "bodacious"]]
|
2368
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2369
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2370
|
+
Redirected to http://test.host/blog/posts
|
2371
|
+
Completed 302 Found in 13ms
|
2372
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2373
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:36 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:36 UTC +00:00], ["username", "bodacious"]]
|
2374
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2375
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2376
|
+
Redirected to http://test.host/blog/posts
|
2377
|
+
Completed 302 Found in 1ms
|
2378
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2379
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2380
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
2381
|
+
Redirected to http://test.host/blog/
|
2382
|
+
Completed 302 Found in 1ms
|
2383
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
2384
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 131
|
2385
|
+
Processing by Blogit::CommentsController#create as JS
|
2386
|
+
Parameters: {"post_id"=>"131", "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"}
|
2387
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "131"]]
|
2388
|
+
[1m[35mSQL (35.1ms)[0m INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 131], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
2389
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 131 LIMIT 1[0m
|
2390
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 131
|
2391
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.4ms)
|
2392
|
+
Completed 200 OK in 173ms (Views: 59.1ms | ActiveRecord: 35.6ms)
|
2393
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 131[0m
|
2394
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
2395
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 131[0m
|
2396
|
+
Processing by Blogit::CommentsController#create as HTML
|
2397
|
+
Parameters: {"post_id"=>"131", "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"}
|
2398
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "131"]]
|
2399
|
+
[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", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 131], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
2400
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 131 LIMIT 1
|
2401
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 131[0m
|
2402
|
+
Redirected to http://test.host/blog/posts/131-tis-is-a-blog-post-title
|
2403
|
+
Completed 302 Found in 95ms
|
2404
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 131
|
2405
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
2406
|
+
Processing by Blogit::CommentsController#create as HTML
|
2407
|
+
Parameters: {"post_id"=>"131", "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"}
|
2408
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "131"]]
|
2409
|
+
[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", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 131], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
2410
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 131 LIMIT 1
|
2411
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 131[0m
|
2412
|
+
Redirected to http://test.host/blog/posts/131-tis-is-a-blog-post-title
|
2413
|
+
Completed 302 Found in 8ms
|
2414
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
2415
|
+
Processing by Blogit::CommentsController#create as HTML
|
2416
|
+
Parameters: {"post_id"=>"131", "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"}
|
2417
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "131"]]
|
2418
|
+
[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", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 131], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
2419
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 131 LIMIT 1[0m
|
2420
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 131
|
2421
|
+
Redirected to http://test.host/blog/posts/131-tis-is-a-blog-post-title
|
2422
|
+
Completed 302 Found in 11ms
|
2423
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
2424
|
+
[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", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 131], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
2425
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 131[0m
|
2426
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2427
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 131]]
|
2428
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 131
|
2429
|
+
Processing by Blogit::CommentsController#destroy as JS
|
2430
|
+
Parameters: {"id"=>"59", "post_id"=>"131", "use_route"=>"blogit"}
|
2431
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "131"]]
|
2432
|
+
[1m[35mBlogit::Comment Load (0.1ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 131 AND "blog_comments"."id" = ? LIMIT 1 [["id", "59"]]
|
2433
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 131 LIMIT 1[0m
|
2434
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 131
|
2435
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 59]]
|
2436
|
+
Completed 200 OK in 12ms (Views: 1.4ms | ActiveRecord: 0.6ms)
|
2437
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 131]]
|
2438
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 131[0m
|
2439
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
2440
|
+
[1m[36mSQL (26.7ms)[0m [1mINSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["body", "I once saw a child the size of a tangerine!"], ["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 131], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
2441
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 131
|
2442
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2443
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 131]]
|
2444
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 131[0m
|
2445
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
2446
|
+
Parameters: {"id"=>"60", "post_id"=>"131", "use_route"=>"blogit"}
|
2447
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "131"]]
|
2448
|
+
[1m[36mBlogit::Comment Load (0.0ms)[0m [1mSELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 131 AND "blog_comments"."id" = ? LIMIT 1[0m [["id", "60"]]
|
2449
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 131 LIMIT 1
|
2450
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 131[0m
|
2451
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 60]]
|
2452
|
+
Redirected to http://test.host/blog/posts/131-tis-is-a-blog-post-title
|
2453
|
+
Completed 302 Found in 9ms
|
2454
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 131]]
|
2455
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 131
|
2456
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
2457
|
+
[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", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 131], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
2458
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 131[0m
|
2459
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2460
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
2461
|
+
Parameters: {"id"=>"61", "post_id"=>"131", "use_route"=>"blogit"}
|
2462
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "131"]]
|
2463
|
+
[1m[35mBlogit::Comment Load (0.0ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 131 AND "blog_comments"."id" = ? LIMIT 1 [["id", "61"]]
|
2464
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 131 LIMIT 1[0m
|
2465
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 131
|
2466
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 61]]
|
2467
|
+
Redirected to http://test.host/blog/posts/131-tis-is-a-blog-post-title
|
2468
|
+
Completed 302 Found in 7ms
|
2469
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
2470
|
+
[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", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 131], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
2471
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 131
|
2472
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
2473
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
2474
|
+
Parameters: {"id"=>"62", "post_id"=>"131", "use_route"=>"blogit"}
|
2475
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
2476
|
+
Redirected to http://test.host/blog/
|
2477
|
+
Completed 302 Found in 1ms
|
2478
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
2479
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
2480
|
+
[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", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 131], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
2481
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 131
|
2482
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
2483
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
2484
|
+
Parameters: {"id"=>"63", "post_id"=>"131", "use_route"=>"blogit"}
|
2485
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
2486
|
+
Redirected to http://test.host/blog/
|
2487
|
+
Completed 302 Found in 1ms
|
2488
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
2489
|
+
Processing by Blogit::PostsController#index as HTML
|
2490
|
+
Parameters: {"page"=>"", "use_route"=>"blogit"}
|
2491
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
2492
|
+
Processing by Blogit::PostsController#index as HTML
|
2493
|
+
Parameters: {"page"=>"2", "use_route"=>"blogit"}
|
2494
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2495
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2496
|
+
Processing by Blogit::PostsController#new as HTML
|
2497
|
+
Parameters: {"use_route"=>"blogit"}
|
2498
|
+
Completed 200 OK in 6ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
2499
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2500
|
+
Processing by Blogit::PostsController#new as HTML
|
2501
|
+
Parameters: {"use_route"=>"blogit"}
|
2502
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2503
|
+
Processing by Blogit::PostsController#new as HTML
|
2504
|
+
Parameters: {"use_route"=>"blogit"}
|
2505
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
2506
|
+
Redirected to http://test.host/blog/
|
2507
|
+
Completed 302 Found in 1ms
|
2508
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2509
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["username", "bodacious"]]
|
2510
|
+
Processing by Blogit::PostsController#create as HTML
|
2511
|
+
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"}
|
2512
|
+
Redirected to http://test.host/blog/posts
|
2513
|
+
Completed 302 Found in 1ms
|
2514
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2515
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["username", "bodacious"]]
|
2516
|
+
Processing by Blogit::PostsController#edit as HTML
|
2517
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2518
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
2519
|
+
Processing by Blogit::PostsController#edit as HTML
|
2520
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2521
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
2522
|
+
Redirected to http://test.host/blog/
|
2523
|
+
Completed 302 Found in 1ms
|
2524
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2525
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["username", "bodacious"]]
|
2526
|
+
Processing by Blogit::PostsController#update as HTML
|
2527
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2528
|
+
Redirected to http://test.host/blog/posts
|
2529
|
+
Completed 302 Found in 1ms
|
2530
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2531
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["username", "bodacious"]]
|
2532
|
+
Processing by Blogit::PostsController#update as HTML
|
2533
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2534
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 248], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00]]
|
2535
|
+
Redirected to http://test.host/blog/posts/156-something-new
|
2536
|
+
Completed 302 Found in 10ms
|
2537
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2538
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["username", "bodacious"]]
|
2539
|
+
Processing by Blogit::PostsController#update as HTML
|
2540
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2541
|
+
[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", 249], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00]]
|
2542
|
+
Redirected to http://test.host/blog/posts/157-something-new
|
2543
|
+
Completed 302 Found in 9ms
|
2544
|
+
Processing by Blogit::PostsController#update as HTML
|
2545
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2546
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
2547
|
+
Redirected to http://test.host/blog/
|
2548
|
+
Completed 302 Found in 1ms
|
2549
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["username", "bodacious"]]
|
2550
|
+
Processing by Blogit::PostsController#show as HTML
|
2551
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2552
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
2553
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2554
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["username", "bodacious"]]
|
2555
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2556
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2557
|
+
Redirected to http://test.host/blog/posts
|
2558
|
+
Completed 302 Found in 1ms
|
2559
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2560
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["username", "bodacious"]]
|
2561
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2562
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2563
|
+
Redirected to http://test.host/blog/posts
|
2564
|
+
Completed 302 Found in 11ms
|
2565
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2566
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["username", "bodacious"]]
|
2567
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2568
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2569
|
+
Redirected to http://test.host/blog/posts
|
2570
|
+
Completed 302 Found in 1ms
|
2571
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2572
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2573
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
2574
|
+
Redirected to http://test.host/blog/
|
2575
|
+
Completed 302 Found in 1ms
|
2576
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["username", "bodacious"]]
|
2577
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 254], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00]]
|
2578
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["username", "bodacious"]]
|
2579
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 255], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00]]
|
2580
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["username", "bodacious"]]
|
2581
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 256], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00]]
|
2582
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["username", "bodacious"]]
|
2583
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 257], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00]]
|
2584
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["username", "bodacious"]]
|
2585
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 258], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00]]
|
2586
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["username", "bodacious"]]
|
2587
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 259], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00]]
|
2588
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["username", "bodacious"]]
|
2589
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 260], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00]]
|
2590
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["username", "Jeronimo"]]
|
2591
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 261 LIMIT 1
|
2592
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:42 UTC +00:00], ["username", "Jeronimo"]]
|
2593
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 262 LIMIT 1
|
2594
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
2595
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 131 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2596
|
+
[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" = 131 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
2597
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 131]]
|
2598
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 132 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2599
|
+
[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" = 132 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
2600
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 132]]
|
2601
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 133 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2602
|
+
[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" = 133 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
2603
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 133]]
|
2604
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 134 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2605
|
+
[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" = 134 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
2606
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 134]]
|
2607
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 135 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2608
|
+
[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" = 135 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
2609
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 135]]
|
2610
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 136 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2611
|
+
[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" = 136 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
2612
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 136]]
|
2613
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 137 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2614
|
+
[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" = 137 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
2615
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 137]]
|
2616
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 138 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2617
|
+
[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" = 138 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
2618
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 138]]
|
2619
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 139 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2620
|
+
[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" = 139 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
2621
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 139]]
|
2622
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 140 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2623
|
+
[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" = 140 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
2624
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 140]]
|
2625
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 141 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2626
|
+
[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" = 141 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
2627
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 141]]
|
2628
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 142 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2629
|
+
[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" = 142 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
2630
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 142]]
|
2631
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 143 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2632
|
+
[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" = 143 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
2633
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 143]]
|
2634
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 144 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2635
|
+
[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" = 144 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
2636
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 144]]
|
2637
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 145 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2638
|
+
[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" = 145 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
2639
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 145]]
|
2640
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 146 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2641
|
+
[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" = 146 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
2642
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 146]]
|
2643
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 147 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2644
|
+
[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" = 147 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
2645
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 147]]
|
2646
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 148 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2647
|
+
[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" = 148 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
2648
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 148]]
|
2649
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 149 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2650
|
+
[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" = 149 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
2651
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 149]]
|
2652
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 150 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2653
|
+
[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" = 150 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
2654
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 150]]
|
2655
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 151 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2656
|
+
[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" = 151 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
2657
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 151]]
|
2658
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 152 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2659
|
+
[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" = 152 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
2660
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 152]]
|
2661
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 153 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2662
|
+
[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" = 153 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
2663
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 153]]
|
2664
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 154 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2665
|
+
[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" = 154 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
2666
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 154]]
|
2667
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 155 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2668
|
+
[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" = 155 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
2669
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 155]]
|
2670
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 156 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2671
|
+
[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" = 156 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
2672
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 156]]
|
2673
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 157 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2674
|
+
[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" = 157 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
2675
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 157]]
|
2676
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 158 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2677
|
+
[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" = 158 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
2678
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 158]]
|
2679
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 159 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2680
|
+
[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" = 159 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
2681
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 159]]
|
2682
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 160 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2683
|
+
[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" = 160 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
2684
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 160]]
|
2685
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 161 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2686
|
+
[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" = 161 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
2687
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 161]]
|
2688
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 162 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2689
|
+
[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" = 162 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
2690
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 162]]
|
2691
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 163 AND "taggings"."taggable_type" = 'Blogit::Post'
|
2692
|
+
[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" = 163 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
2693
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 163]]
|
2694
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 164 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
2695
|
+
[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" = 164 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
2696
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 164]]
|
2697
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["username", "bodacious"]]
|
2698
|
+
[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", 263], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00]]
|
2699
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["username", "bodacious"]]
|
2700
|
+
[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", 264], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 28 Nov 2011 20:32:43 UTC +00:00]]
|
2701
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["username", "bodacious"]]
|
2702
|
+
[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", 265], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 27 Nov 2011 20:32:43 UTC +00:00]]
|
2703
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["username", "bodacious"]]
|
2704
|
+
[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", 266], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 26 Nov 2011 20:32:43 UTC +00:00]]
|
2705
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["username", "bodacious"]]
|
2706
|
+
[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", 267], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 25 Nov 2011 20:32:43 UTC +00:00]]
|
2707
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["username", "bodacious"]]
|
2708
|
+
[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", 268], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 24 Nov 2011 20:32:43 UTC +00:00]]
|
2709
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["username", "bodacious"]]
|
2710
|
+
[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", 269], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 23 Nov 2011 20:32:43 UTC +00:00]]
|
2711
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["username", "bodacious"]]
|
2712
|
+
[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", 270], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 22 Nov 2011 20:32:43 UTC +00:00]]
|
2713
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["username", "bodacious"]]
|
2714
|
+
[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", 271], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 21 Nov 2011 20:32:43 UTC +00:00]]
|
2715
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["username", "bodacious"]]
|
2716
|
+
[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", 272], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 20 Nov 2011 20:32:43 UTC +00:00]]
|
2717
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["username", "bodacious"]]
|
2718
|
+
[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", 273], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 19 Nov 2011 20:32:43 UTC +00:00]]
|
2719
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["username", "bodacious"]]
|
2720
|
+
[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", 274], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 20:32:43 UTC +00:00]]
|
2721
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["username", "bodacious"]]
|
2722
|
+
[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", 275], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Nov 2011 20:32:43 UTC +00:00]]
|
2723
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["username", "bodacious"]]
|
2724
|
+
[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", 276], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 16 Nov 2011 20:32:43 UTC +00:00]]
|
2725
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["username", "bodacious"]]
|
2726
|
+
[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", 277], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 15 Nov 2011 20:32:43 UTC +00:00]]
|
2727
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0
|
2728
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1[0m
|
2729
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 25 OFFSET 0) subquery_for_count
|
2730
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 5[0m
|
2731
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 25 OFFSET 25
|
2732
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count [0m
|
2733
|
+
Processing by Blogit::PostsController#index as HTML
|
2734
|
+
Parameters: {"page"=>"", "use_route"=>"blogit"}
|
2735
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (9.4ms)
|
2736
|
+
Completed 200 OK in 40ms (Views: 39.3ms | ActiveRecord: 0.0ms)
|
2737
|
+
Processing by Blogit::PostsController#index as HTML
|
2738
|
+
Parameters: {"page"=>"2", "use_route"=>"blogit"}
|
2739
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2740
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2741
|
+
Processing by Blogit::PostsController#new as HTML
|
2742
|
+
Parameters: {"use_route"=>"blogit"}
|
2743
|
+
Completed 200 OK in 79ms (Views: 1.3ms | ActiveRecord: 0.2ms)
|
2744
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2745
|
+
Processing by Blogit::PostsController#new as HTML
|
2746
|
+
Parameters: {"use_route"=>"blogit"}
|
2747
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
2748
|
+
Processing by Blogit::PostsController#new as HTML
|
2749
|
+
Parameters: {"use_route"=>"blogit"}
|
2750
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
2751
|
+
Redirected to http://test.host/blog/
|
2752
|
+
Completed 302 Found in 6ms
|
2753
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2754
|
+
[1m[36mSQL (11.2ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["username", "bodacious"]]
|
2755
|
+
Processing by Blogit::PostsController#create as HTML
|
2756
|
+
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"}
|
2757
|
+
Redirected to http://test.host/blog/posts
|
2758
|
+
Completed 302 Found in 1ms
|
2759
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2760
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["username", "bodacious"]]
|
2761
|
+
Processing by Blogit::PostsController#edit as HTML
|
2762
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2763
|
+
Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
2764
|
+
Processing by Blogit::PostsController#edit as HTML
|
2765
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2766
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
2767
|
+
Redirected to http://test.host/blog/
|
2768
|
+
Completed 302 Found in 1ms
|
2769
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2770
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["username", "bodacious"]]
|
2771
|
+
Processing by Blogit::PostsController#update as HTML
|
2772
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2773
|
+
Redirected to http://test.host/blog/posts
|
2774
|
+
Completed 302 Found in 1ms
|
2775
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2776
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["username", "bodacious"]]
|
2777
|
+
Processing by Blogit::PostsController#update as HTML
|
2778
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2779
|
+
[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", 281], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00]]
|
2780
|
+
Redirected to http://test.host/blog/posts/180-something-new
|
2781
|
+
Completed 302 Found in 91ms
|
2782
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2783
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["username", "bodacious"]]
|
2784
|
+
Processing by Blogit::PostsController#update as HTML
|
2785
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2786
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 282], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00]]
|
2787
|
+
Redirected to http://test.host/blog/posts/181-something-new
|
2788
|
+
Completed 302 Found in 6ms
|
2789
|
+
Processing by Blogit::PostsController#update as HTML
|
2790
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2791
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
2792
|
+
Redirected to http://test.host/blog/
|
2793
|
+
Completed 302 Found in 1ms
|
2794
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["username", "bodacious"]]
|
2795
|
+
Processing by Blogit::PostsController#show as HTML
|
2796
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2797
|
+
Completed 200 OK in 33ms (Views: 1.3ms | ActiveRecord: 0.2ms)
|
2798
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2799
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["username", "bodacious"]]
|
2800
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2801
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2802
|
+
Redirected to http://test.host/blog/posts
|
2803
|
+
Completed 302 Found in 1ms
|
2804
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2805
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["username", "bodacious"]]
|
2806
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2807
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2808
|
+
Redirected to http://test.host/blog/posts
|
2809
|
+
Completed 302 Found in 11ms
|
2810
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2811
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:49 UTC +00:00], ["username", "bodacious"]]
|
2812
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2813
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2814
|
+
Redirected to http://test.host/blog/posts
|
2815
|
+
Completed 302 Found in 1ms
|
2816
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2817
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2818
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
2819
|
+
Redirected to http://test.host/blog/
|
2820
|
+
Completed 302 Found in 1ms
|
2821
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
2822
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 165
|
2823
|
+
Processing by Blogit::CommentsController#create as JS
|
2824
|
+
Parameters: {"post_id"=>"165", "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"}
|
2825
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "165"]]
|
2826
|
+
[1m[35mSQL (36.0ms)[0m INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 165], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
2827
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 165 LIMIT 1[0m
|
2828
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 165
|
2829
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.4ms)
|
2830
|
+
Completed 200 OK in 171ms (Views: 58.7ms | ActiveRecord: 36.6ms)
|
2831
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 165[0m
|
2832
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
2833
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 165[0m
|
2834
|
+
Processing by Blogit::CommentsController#create as HTML
|
2835
|
+
Parameters: {"post_id"=>"165", "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"}
|
2836
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "165"]]
|
2837
|
+
[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", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 165], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
2838
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 165 LIMIT 1
|
2839
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 165[0m
|
2840
|
+
Redirected to http://test.host/blog/posts/165-tis-is-a-blog-post-title
|
2841
|
+
Completed 302 Found in 93ms
|
2842
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 165
|
2843
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
2844
|
+
Processing by Blogit::CommentsController#create as HTML
|
2845
|
+
Parameters: {"post_id"=>"165", "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"}
|
2846
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "165"]]
|
2847
|
+
[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", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 165], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
2848
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 165 LIMIT 1
|
2849
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 165[0m
|
2850
|
+
Redirected to http://test.host/blog/posts/165-tis-is-a-blog-post-title
|
2851
|
+
Completed 302 Found in 8ms
|
2852
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
2853
|
+
Processing by Blogit::CommentsController#create as HTML
|
2854
|
+
Parameters: {"post_id"=>"165", "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"}
|
2855
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "165"]]
|
2856
|
+
[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", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 165], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
2857
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 165 LIMIT 1[0m
|
2858
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 165
|
2859
|
+
Redirected to http://test.host/blog/posts/165-tis-is-a-blog-post-title
|
2860
|
+
Completed 302 Found in 9ms
|
2861
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
2862
|
+
[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", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 165], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
2863
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 165[0m
|
2864
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2865
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 165]]
|
2866
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 165
|
2867
|
+
Processing by Blogit::CommentsController#destroy as JS
|
2868
|
+
Parameters: {"id"=>"68", "post_id"=>"165", "use_route"=>"blogit"}
|
2869
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "165"]]
|
2870
|
+
[1m[35mBlogit::Comment Load (0.1ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 165 AND "blog_comments"."id" = ? LIMIT 1 [["id", "68"]]
|
2871
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 165 LIMIT 1[0m
|
2872
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 165
|
2873
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 68]]
|
2874
|
+
Completed 200 OK in 12ms (Views: 1.5ms | ActiveRecord: 0.6ms)
|
2875
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 165]]
|
2876
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 165[0m
|
2877
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
2878
|
+
[1m[36mSQL (26.2ms)[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", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 165], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
2879
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 165
|
2880
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2881
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 165]]
|
2882
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 165[0m
|
2883
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
2884
|
+
Parameters: {"id"=>"69", "post_id"=>"165", "use_route"=>"blogit"}
|
2885
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "165"]]
|
2886
|
+
[1m[36mBlogit::Comment Load (0.0ms)[0m [1mSELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 165 AND "blog_comments"."id" = ? LIMIT 1[0m [["id", "69"]]
|
2887
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 165 LIMIT 1
|
2888
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 165[0m
|
2889
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 69]]
|
2890
|
+
Redirected to http://test.host/blog/posts/165-tis-is-a-blog-post-title
|
2891
|
+
Completed 302 Found in 8ms
|
2892
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 165]]
|
2893
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 165
|
2894
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
2895
|
+
[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", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 165], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
2896
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 165[0m
|
2897
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2898
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
2899
|
+
Parameters: {"id"=>"70", "post_id"=>"165", "use_route"=>"blogit"}
|
2900
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "165"]]
|
2901
|
+
[1m[35mBlogit::Comment Load (0.0ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 165 AND "blog_comments"."id" = ? LIMIT 1 [["id", "70"]]
|
2902
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 165 LIMIT 1[0m
|
2903
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 165
|
2904
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 70]]
|
2905
|
+
Redirected to http://test.host/blog/posts/165-tis-is-a-blog-post-title
|
2906
|
+
Completed 302 Found in 8ms
|
2907
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
2908
|
+
[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", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 165], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
2909
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 165
|
2910
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
2911
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
2912
|
+
Parameters: {"id"=>"71", "post_id"=>"165", "use_route"=>"blogit"}
|
2913
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
2914
|
+
Redirected to http://test.host/blog/
|
2915
|
+
Completed 302 Found in 1ms
|
2916
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
2917
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
2918
|
+
[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", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 165], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
2919
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 165
|
2920
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
2921
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
2922
|
+
Parameters: {"id"=>"72", "post_id"=>"165", "use_route"=>"blogit"}
|
2923
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
2924
|
+
Redirected to http://test.host/blog/
|
2925
|
+
Completed 302 Found in 1ms
|
2926
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
2927
|
+
Processing by Blogit::PostsController#index as HTML
|
2928
|
+
Parameters: {"page"=>"", "use_route"=>"blogit"}
|
2929
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
2930
|
+
Processing by Blogit::PostsController#index as HTML
|
2931
|
+
Parameters: {"page"=>"2", "use_route"=>"blogit"}
|
2932
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2933
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2934
|
+
Processing by Blogit::PostsController#new as HTML
|
2935
|
+
Parameters: {"use_route"=>"blogit"}
|
2936
|
+
Completed 200 OK in 6ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
2937
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2938
|
+
Processing by Blogit::PostsController#new as HTML
|
2939
|
+
Parameters: {"use_route"=>"blogit"}
|
2940
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
2941
|
+
Processing by Blogit::PostsController#new as HTML
|
2942
|
+
Parameters: {"use_route"=>"blogit"}
|
2943
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
2944
|
+
Redirected to http://test.host/blog/
|
2945
|
+
Completed 302 Found in 1ms
|
2946
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2947
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["username", "bodacious"]]
|
2948
|
+
Processing by Blogit::PostsController#create as HTML
|
2949
|
+
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"}
|
2950
|
+
Redirected to http://test.host/blog/posts
|
2951
|
+
Completed 302 Found in 1ms
|
2952
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2953
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["username", "bodacious"]]
|
2954
|
+
Processing by Blogit::PostsController#edit as HTML
|
2955
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2956
|
+
Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
2957
|
+
Processing by Blogit::PostsController#edit as HTML
|
2958
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2959
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
2960
|
+
Redirected to http://test.host/blog/
|
2961
|
+
Completed 302 Found in 1ms
|
2962
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2963
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["username", "bodacious"]]
|
2964
|
+
Processing by Blogit::PostsController#update as HTML
|
2965
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2966
|
+
Redirected to http://test.host/blog/posts
|
2967
|
+
Completed 302 Found in 1ms
|
2968
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2969
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["username", "bodacious"]]
|
2970
|
+
Processing by Blogit::PostsController#update as HTML
|
2971
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2972
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 290], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00]]
|
2973
|
+
Redirected to http://test.host/blog/posts/182-something-new
|
2974
|
+
Completed 302 Found in 9ms
|
2975
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
2976
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["username", "bodacious"]]
|
2977
|
+
Processing by Blogit::PostsController#update as HTML
|
2978
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2979
|
+
[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", 291], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00]]
|
2980
|
+
Redirected to http://test.host/blog/posts/183-something-new
|
2981
|
+
Completed 302 Found in 8ms
|
2982
|
+
Processing by Blogit::PostsController#update as HTML
|
2983
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
2984
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
2985
|
+
Redirected to http://test.host/blog/
|
2986
|
+
Completed 302 Found in 1ms
|
2987
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["username", "bodacious"]]
|
2988
|
+
Processing by Blogit::PostsController#show as HTML
|
2989
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2990
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
2991
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2992
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["username", "bodacious"]]
|
2993
|
+
Processing by Blogit::PostsController#destroy as HTML
|
2994
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
2995
|
+
Redirected to http://test.host/blog/posts
|
2996
|
+
Completed 302 Found in 1ms
|
2997
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
2998
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["username", "bodacious"]]
|
2999
|
+
Processing by Blogit::PostsController#destroy as HTML
|
3000
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
3001
|
+
Redirected to http://test.host/blog/posts
|
3002
|
+
Completed 302 Found in 11ms
|
3003
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
3004
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:55 UTC +00:00], ["username", "bodacious"]]
|
3005
|
+
Processing by Blogit::PostsController#destroy as HTML
|
3006
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
3007
|
+
Redirected to http://test.host/blog/posts
|
3008
|
+
Completed 302 Found in 1ms
|
3009
|
+
Processing by Blogit::PostsController#destroy as HTML
|
3010
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
3011
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
3012
|
+
Redirected to http://test.host/blog/
|
3013
|
+
Completed 302 Found in 1ms
|
3014
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3015
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 296], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00]]
|
3016
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3017
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 297], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00]]
|
3018
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3019
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 298], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00]]
|
3020
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3021
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 299], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00]]
|
3022
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3023
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 300], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00]]
|
3024
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3025
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 301], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00]]
|
3026
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3027
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 302], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00]]
|
3028
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "Jeronimo"]]
|
3029
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 303 LIMIT 1
|
3030
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "Jeronimo"]]
|
3031
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 304 LIMIT 1
|
3032
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
3033
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 165 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3034
|
+
[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" = 165 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3035
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 165]]
|
3036
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 166 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3037
|
+
[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" = 166 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3038
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 166]]
|
3039
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 167 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3040
|
+
[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" = 167 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3041
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 167]]
|
3042
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 168 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3043
|
+
[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" = 168 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3044
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 168]]
|
3045
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 169 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3046
|
+
[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" = 169 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3047
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 169]]
|
3048
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 170 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3049
|
+
[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" = 170 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3050
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 170]]
|
3051
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 171 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3052
|
+
[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" = 171 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3053
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 171]]
|
3054
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 172 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3055
|
+
[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" = 172 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3056
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 172]]
|
3057
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 173 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3058
|
+
[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" = 173 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3059
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 173]]
|
3060
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 174 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3061
|
+
[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" = 174 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3062
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 174]]
|
3063
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 175 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3064
|
+
[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" = 175 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3065
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 175]]
|
3066
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 176 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3067
|
+
[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" = 176 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3068
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 176]]
|
3069
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 177 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3070
|
+
[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" = 177 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3071
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 177]]
|
3072
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 178 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3073
|
+
[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" = 178 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3074
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 178]]
|
3075
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 179 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3076
|
+
[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" = 179 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3077
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 179]]
|
3078
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 180 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3079
|
+
[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" = 180 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3080
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 180]]
|
3081
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 181 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3082
|
+
[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" = 181 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3083
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 181]]
|
3084
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 182 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3085
|
+
[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" = 182 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3086
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 182]]
|
3087
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 183 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3088
|
+
[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" = 183 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3089
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 183]]
|
3090
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 184 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3091
|
+
[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" = 184 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3092
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 184]]
|
3093
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 185 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3094
|
+
[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" = 185 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3095
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 185]]
|
3096
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 186 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3097
|
+
[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" = 186 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3098
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 186]]
|
3099
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 187 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3100
|
+
[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" = 187 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3101
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 187]]
|
3102
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 188 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3103
|
+
[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" = 188 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3104
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 188]]
|
3105
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 189 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3106
|
+
[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" = 189 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3107
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 189]]
|
3108
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 190 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3109
|
+
[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" = 190 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3110
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 190]]
|
3111
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3112
|
+
[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", 305], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00]]
|
3113
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3114
|
+
[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", 306], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 28 Nov 2011 20:32:56 UTC +00:00]]
|
3115
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3116
|
+
[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", 307], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 27 Nov 2011 20:32:56 UTC +00:00]]
|
3117
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3118
|
+
[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", 308], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 26 Nov 2011 20:32:56 UTC +00:00]]
|
3119
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3120
|
+
[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", 309], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 25 Nov 2011 20:32:56 UTC +00:00]]
|
3121
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3122
|
+
[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", 310], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 24 Nov 2011 20:32:56 UTC +00:00]]
|
3123
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3124
|
+
[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", 311], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 23 Nov 2011 20:32:56 UTC +00:00]]
|
3125
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3126
|
+
[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", 312], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 22 Nov 2011 20:32:56 UTC +00:00]]
|
3127
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3128
|
+
[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", 313], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 21 Nov 2011 20:32:56 UTC +00:00]]
|
3129
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3130
|
+
[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", 314], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 20 Nov 2011 20:32:56 UTC +00:00]]
|
3131
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3132
|
+
[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", 315], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 19 Nov 2011 20:32:56 UTC +00:00]]
|
3133
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3134
|
+
[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", 316], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 20:32:56 UTC +00:00]]
|
3135
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3136
|
+
[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", 317], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Nov 2011 20:32:56 UTC +00:00]]
|
3137
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3138
|
+
[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", 318], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 16 Nov 2011 20:32:56 UTC +00:00]]
|
3139
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["username", "bodacious"]]
|
3140
|
+
[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", 319], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:32:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 15 Nov 2011 20:32:56 UTC +00:00]]
|
3141
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0
|
3142
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1[0m
|
3143
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 25 OFFSET 0) subquery_for_count
|
3144
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 5[0m
|
3145
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 25 OFFSET 25
|
3146
|
+
[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
|
3147
|
+
[1m[36mSQL (11.1ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["username", "Jeronimo"]]
|
3148
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 320 LIMIT 1
|
3149
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["username", "Jeronimo"]]
|
3150
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 321 LIMIT 1
|
3151
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
3152
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 191 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3153
|
+
[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" = 191 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3154
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 191]]
|
3155
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 192 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3156
|
+
[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" = 192 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3157
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 192]]
|
3158
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 193 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3159
|
+
[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" = 193 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3160
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 193]]
|
3161
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 194 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3162
|
+
[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" = 194 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3163
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 194]]
|
3164
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 195 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3165
|
+
[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" = 195 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3166
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 195]]
|
3167
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 196 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3168
|
+
[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" = 196 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3169
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 196]]
|
3170
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 197 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3171
|
+
[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" = 197 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3172
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 197]]
|
3173
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 198 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3174
|
+
[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" = 198 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3175
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 198]]
|
3176
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 199 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3177
|
+
[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" = 199 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3178
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 199]]
|
3179
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 200 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3180
|
+
[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" = 200 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3181
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 200]]
|
3182
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 201 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3183
|
+
[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" = 201 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3184
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 201]]
|
3185
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 202 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3186
|
+
[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" = 202 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3187
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 202]]
|
3188
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 203 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3189
|
+
[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" = 203 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3190
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 203]]
|
3191
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 204 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3192
|
+
[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" = 204 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3193
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 204]]
|
3194
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 205 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3195
|
+
[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" = 205 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3196
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 205]]
|
3197
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["username", "bodacious"]]
|
3198
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 322], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00]]
|
3199
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["username", "bodacious"]]
|
3200
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 323], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 28 Nov 2011 20:34:27 UTC +00:00]]
|
3201
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["username", "bodacious"]]
|
3202
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 324], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 27 Nov 2011 20:34:27 UTC +00:00]]
|
3203
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["username", "bodacious"]]
|
3204
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 325], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 26 Nov 2011 20:34:27 UTC +00:00]]
|
3205
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["username", "bodacious"]]
|
3206
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 326], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 25 Nov 2011 20:34:27 UTC +00:00]]
|
3207
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["username", "bodacious"]]
|
3208
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 327], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 24 Nov 2011 20:34:27 UTC +00:00]]
|
3209
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["username", "bodacious"]]
|
3210
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 328], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 23 Nov 2011 20:34:27 UTC +00:00]]
|
3211
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["username", "bodacious"]]
|
3212
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 329], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 22 Nov 2011 20:34:27 UTC +00:00]]
|
3213
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["username", "bodacious"]]
|
3214
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 330], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 21 Nov 2011 20:34:27 UTC +00:00]]
|
3215
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["username", "bodacious"]]
|
3216
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 331], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 20 Nov 2011 20:34:27 UTC +00:00]]
|
3217
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["username", "bodacious"]]
|
3218
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 332], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 19 Nov 2011 20:34:27 UTC +00:00]]
|
3219
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["username", "bodacious"]]
|
3220
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 333], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 20:34:27 UTC +00:00]]
|
3221
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["username", "bodacious"]]
|
3222
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 334], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Nov 2011 20:34:27 UTC +00:00]]
|
3223
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["username", "bodacious"]]
|
3224
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 335], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 16 Nov 2011 20:34:27 UTC +00:00]]
|
3225
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["username", "bodacious"]]
|
3226
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 336], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 15 Nov 2011 20:34:27 UTC +00:00]]
|
3227
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0[0m
|
3228
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1
|
3229
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count [0m
|
3230
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count
|
3231
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
3232
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 206
|
3233
|
+
Processing by Blogit::CommentsController#create as JS
|
3234
|
+
Parameters: {"post_id"=>"206", "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"}
|
3235
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "206"]]
|
3236
|
+
[1m[35mSQL (37.9ms)[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", Tue, 29 Nov 2011 20:34:33 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 206], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:34:33 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
3237
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 206 LIMIT 1[0m
|
3238
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 206
|
3239
|
+
Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.6ms)
|
3240
|
+
Completed 200 OK in 180ms (Views: 61.7ms | ActiveRecord: 38.5ms)
|
3241
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 206[0m
|
3242
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
3243
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 206[0m
|
3244
|
+
Processing by Blogit::CommentsController#create as HTML
|
3245
|
+
Parameters: {"post_id"=>"206", "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"}
|
3246
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "206"]]
|
3247
|
+
[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", Tue, 29 Nov 2011 20:34:33 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 206], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:34:33 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
3248
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 206 LIMIT 1
|
3249
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 206[0m
|
3250
|
+
Redirected to http://test.host/blog/posts/206-tis-is-a-blog-post-title
|
3251
|
+
Completed 302 Found in 93ms
|
3252
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 206
|
3253
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
3254
|
+
Processing by Blogit::CommentsController#create as HTML
|
3255
|
+
Parameters: {"post_id"=>"206", "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"}
|
3256
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "206"]]
|
3257
|
+
[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", Tue, 29 Nov 2011 20:34:33 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 206], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:34:33 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
3258
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 206 LIMIT 1
|
3259
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 206[0m
|
3260
|
+
Redirected to http://test.host/blog/posts/206-tis-is-a-blog-post-title
|
3261
|
+
Completed 302 Found in 8ms
|
3262
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
3263
|
+
Processing by Blogit::CommentsController#create as HTML
|
3264
|
+
Parameters: {"post_id"=>"206", "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"}
|
3265
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "206"]]
|
3266
|
+
[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", Tue, 29 Nov 2011 20:34:33 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 206], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:34:33 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
3267
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 206 LIMIT 1[0m
|
3268
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 206
|
3269
|
+
Redirected to http://test.host/blog/posts/206-tis-is-a-blog-post-title
|
3270
|
+
Completed 302 Found in 9ms
|
3271
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
3272
|
+
[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", Tue, 29 Nov 2011 20:34:33 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 206], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:34:33 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
3273
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 206[0m
|
3274
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
3275
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 206]]
|
3276
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 206
|
3277
|
+
Processing by Blogit::CommentsController#destroy as JS
|
3278
|
+
Parameters: {"id"=>"77", "post_id"=>"206", "use_route"=>"blogit"}
|
3279
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "206"]]
|
3280
|
+
[1m[35mBlogit::Comment Load (0.1ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 206 AND "blog_comments"."id" = ? LIMIT 1 [["id", "77"]]
|
3281
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 206 LIMIT 1[0m
|
3282
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 206
|
3283
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 77]]
|
3284
|
+
Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.5ms)
|
3285
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 206]]
|
3286
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 206[0m
|
3287
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
3288
|
+
[1m[36mSQL (26.0ms)[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", Tue, 29 Nov 2011 20:34:33 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 206], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:34:33 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
3289
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 206
|
3290
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
3291
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 206]]
|
3292
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 206[0m
|
3293
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
3294
|
+
Parameters: {"id"=>"78", "post_id"=>"206", "use_route"=>"blogit"}
|
3295
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "206"]]
|
3296
|
+
[1m[36mBlogit::Comment Load (0.0ms)[0m [1mSELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 206 AND "blog_comments"."id" = ? LIMIT 1[0m [["id", "78"]]
|
3297
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 206 LIMIT 1
|
3298
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 206[0m
|
3299
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 78]]
|
3300
|
+
Redirected to http://test.host/blog/posts/206-tis-is-a-blog-post-title
|
3301
|
+
Completed 302 Found in 8ms
|
3302
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", 206]]
|
3303
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 206
|
3304
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" LIMIT 1[0m
|
3305
|
+
[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", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 206], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
3306
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 206[0m
|
3307
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
3308
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
3309
|
+
Parameters: {"id"=>"79", "post_id"=>"206", "use_route"=>"blogit"}
|
3310
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1[0m [["id", "206"]]
|
3311
|
+
[1m[35mBlogit::Comment Load (0.0ms)[0m SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 206 AND "blog_comments"."id" = ? LIMIT 1 [["id", "79"]]
|
3312
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 206 LIMIT 1[0m
|
3313
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 206
|
3314
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_comments" WHERE "blog_comments"."id" = ?[0m [["id", 79]]
|
3315
|
+
Redirected to http://test.host/blog/posts/206-tis-is-a-blog-post-title
|
3316
|
+
Completed 302 Found in 7ms
|
3317
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
3318
|
+
[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", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 206], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
3319
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 206
|
3320
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
3321
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
3322
|
+
Parameters: {"id"=>"80", "post_id"=>"206", "use_route"=>"blogit"}
|
3323
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
3324
|
+
Redirected to http://test.host/blog/
|
3325
|
+
Completed 302 Found in 1ms
|
3326
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
3327
|
+
[1m[35mBlogit::Post Load (0.1ms)[0m SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
|
3328
|
+
[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", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 206], ["state", nil], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["website", "http://gavinmorrice.com"]]
|
3329
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 206
|
3330
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
3331
|
+
Processing by Blogit::CommentsController#destroy as HTML
|
3332
|
+
Parameters: {"id"=>"81", "post_id"=>"206", "use_route"=>"blogit"}
|
3333
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
3334
|
+
Redirected to http://test.host/blog/
|
3335
|
+
Completed 302 Found in 1ms
|
3336
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "blog_comments" [0m
|
3337
|
+
Processing by Blogit::PostsController#index as HTML
|
3338
|
+
Parameters: {"page"=>"", "use_route"=>"blogit"}
|
3339
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
3340
|
+
Processing by Blogit::PostsController#index as HTML
|
3341
|
+
Parameters: {"page"=>"2", "use_route"=>"blogit"}
|
3342
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
3343
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
3344
|
+
Processing by Blogit::PostsController#new as HTML
|
3345
|
+
Parameters: {"use_route"=>"blogit"}
|
3346
|
+
Completed 200 OK in 6ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
3347
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
3348
|
+
Processing by Blogit::PostsController#new as HTML
|
3349
|
+
Parameters: {"use_route"=>"blogit"}
|
3350
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
3351
|
+
Processing by Blogit::PostsController#new as HTML
|
3352
|
+
Parameters: {"use_route"=>"blogit"}
|
3353
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
3354
|
+
Redirected to http://test.host/blog/
|
3355
|
+
Completed 302 Found in 1ms
|
3356
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
3357
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3358
|
+
Processing by Blogit::PostsController#create as HTML
|
3359
|
+
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"}
|
3360
|
+
Redirected to http://test.host/blog/posts
|
3361
|
+
Completed 302 Found in 1ms
|
3362
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
3363
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3364
|
+
Processing by Blogit::PostsController#edit as HTML
|
3365
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
3366
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
3367
|
+
Processing by Blogit::PostsController#edit as HTML
|
3368
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
3369
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1[0m
|
3370
|
+
Redirected to http://test.host/blog/
|
3371
|
+
Completed 302 Found in 1ms
|
3372
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
3373
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3374
|
+
Processing by Blogit::PostsController#update as HTML
|
3375
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
3376
|
+
Redirected to http://test.host/blog/posts
|
3377
|
+
Completed 302 Found in 1ms
|
3378
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
3379
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3380
|
+
Processing by Blogit::PostsController#update as HTML
|
3381
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
3382
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 340], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00]]
|
3383
|
+
Redirected to http://test.host/blog/posts/221-something-new
|
3384
|
+
Completed 302 Found in 9ms
|
3385
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" LIMIT 1[0m
|
3386
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3387
|
+
Processing by Blogit::PostsController#update as HTML
|
3388
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
3389
|
+
[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", 341], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Something new"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00]]
|
3390
|
+
Redirected to http://test.host/blog/posts/222-something-new
|
3391
|
+
Completed 302 Found in 7ms
|
3392
|
+
Processing by Blogit::PostsController#update as HTML
|
3393
|
+
Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
|
3394
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
3395
|
+
Redirected to http://test.host/blog/
|
3396
|
+
Completed 302 Found in 1ms
|
3397
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3398
|
+
Processing by Blogit::PostsController#show as HTML
|
3399
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
3400
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
3401
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
3402
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3403
|
+
Processing by Blogit::PostsController#destroy as HTML
|
3404
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
3405
|
+
Redirected to http://test.host/blog/posts
|
3406
|
+
Completed 302 Found in 1ms
|
3407
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
3408
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3409
|
+
Processing by Blogit::PostsController#destroy as HTML
|
3410
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
3411
|
+
Redirected to http://test.host/blog/posts
|
3412
|
+
Completed 302 Found in 11ms
|
3413
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" LIMIT 1
|
3414
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3415
|
+
Processing by Blogit::PostsController#destroy as HTML
|
3416
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
3417
|
+
Redirected to http://test.host/blog/posts
|
3418
|
+
Completed 302 Found in 1ms
|
3419
|
+
Processing by Blogit::PostsController#destroy as HTML
|
3420
|
+
Parameters: {"id"=>"1", "use_route"=>"blogit"}
|
3421
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
|
3422
|
+
Redirected to http://test.host/blog/
|
3423
|
+
Completed 302 Found in 1ms
|
3424
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3425
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 346], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00]]
|
3426
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3427
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 347], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00]]
|
3428
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3429
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 348], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00]]
|
3430
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3431
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 349], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00]]
|
3432
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3433
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 350], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00]]
|
3434
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3435
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 351], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00]]
|
3436
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3437
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 352], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00]]
|
3438
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "Jeronimo"]]
|
3439
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 353 LIMIT 1
|
3440
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "Jeronimo"]]
|
3441
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 354 LIMIT 1
|
3442
|
+
[1m[36mBlogit::Post Load (0.2ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" [0m
|
3443
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 206 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3444
|
+
[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" = 206 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3445
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 206]]
|
3446
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 207 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3447
|
+
[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" = 207 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3448
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 207]]
|
3449
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 208 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3450
|
+
[1m[36mSQL (0.2ms)[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" = 208 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3451
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 208]]
|
3452
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 209 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3453
|
+
[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" = 209 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3454
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 209]]
|
3455
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 210 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3456
|
+
[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" = 210 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3457
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 210]]
|
3458
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 211 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3459
|
+
[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" = 211 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3460
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 211]]
|
3461
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 212 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3462
|
+
[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" = 212 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3463
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 212]]
|
3464
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 213 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3465
|
+
[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" = 213 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3466
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 213]]
|
3467
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 214 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3468
|
+
[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" = 214 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3469
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 214]]
|
3470
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 215 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3471
|
+
[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" = 215 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3472
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 215]]
|
3473
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 216 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3474
|
+
[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" = 216 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3475
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 216]]
|
3476
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 217 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3477
|
+
[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" = 217 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3478
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 217]]
|
3479
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 218 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3480
|
+
[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" = 218 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3481
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 218]]
|
3482
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 219 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3483
|
+
[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" = 219 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3484
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 219]]
|
3485
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 220 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3486
|
+
[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" = 220 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3487
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 220]]
|
3488
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 221 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3489
|
+
[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" = 221 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3490
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 221]]
|
3491
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 222 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3492
|
+
[1m[36mSQL (0.2ms)[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" = 222 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3493
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 222]]
|
3494
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 223 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3495
|
+
[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" = 223 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3496
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 223]]
|
3497
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 224 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3498
|
+
[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" = 224 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3499
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 224]]
|
3500
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 225 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3501
|
+
[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" = 225 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3502
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 225]]
|
3503
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 226 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3504
|
+
[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" = 226 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3505
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 226]]
|
3506
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 227 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3507
|
+
[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" = 227 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3508
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 227]]
|
3509
|
+
[1m[35mActsAsTaggableOn::Tagging Load (0.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 228 AND "taggings"."taggable_type" = 'Blogit::Post'
|
3510
|
+
[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" = 228 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')[0m
|
3511
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 228]]
|
3512
|
+
[1m[36mActsAsTaggableOn::Tagging Load (0.1ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 229 AND "taggings"."taggable_type" = 'Blogit::Post'[0m
|
3513
|
+
[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" = 229 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.tag_id = tags.id AND taggings.context = 'tags')
|
3514
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "blog_posts" WHERE "blog_posts"."id" = ?[0m [["id", 229]]
|
3515
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3516
|
+
[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", 355], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00]]
|
3517
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3518
|
+
[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", 356], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 28 Nov 2011 20:34:34 UTC +00:00]]
|
3519
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3520
|
+
[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", 357], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 27 Nov 2011 20:34:34 UTC +00:00]]
|
3521
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3522
|
+
[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", 358], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 26 Nov 2011 20:34:34 UTC +00:00]]
|
3523
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3524
|
+
[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", 359], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 25 Nov 2011 20:34:34 UTC +00:00]]
|
3525
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3526
|
+
[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", 360], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 24 Nov 2011 20:34:34 UTC +00:00]]
|
3527
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3528
|
+
[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", 361], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 23 Nov 2011 20:34:34 UTC +00:00]]
|
3529
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3530
|
+
[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", 362], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 22 Nov 2011 20:34:34 UTC +00:00]]
|
3531
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3532
|
+
[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", 363], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 21 Nov 2011 20:34:34 UTC +00:00]]
|
3533
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3534
|
+
[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", 364], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 20 Nov 2011 20:34:34 UTC +00:00]]
|
3535
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3536
|
+
[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", 365], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 19 Nov 2011 20:34:34 UTC +00:00]]
|
3537
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3538
|
+
[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", 366], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 18 Nov 2011 20:34:34 UTC +00:00]]
|
3539
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3540
|
+
[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", 367], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Nov 2011 20:34:34 UTC +00:00]]
|
3541
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3542
|
+
[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", 368], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 16 Nov 2011 20:34:34 UTC +00:00]]
|
3543
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["password", "password"], ["updated_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["username", "bodacious"]]
|
3544
|
+
[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", 369], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 29 Nov 2011 20:34:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 15 Nov 2011 20:34:34 UTC +00:00]]
|
3545
|
+
[1m[35mBlogit::Post Load (0.2ms)[0m SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0
|
3546
|
+
[1m[36mBlogit::Post Load (0.1ms)[0m [1mSELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1[0m
|
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
|
+
[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
|