dinsley-markaby 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. data/README +256 -0
  2. data/Rakefile +49 -0
  3. data/VERSION.yml +4 -0
  4. data/lib/markaby/builder.rb +289 -0
  5. data/lib/markaby/cssproxy.rb +48 -0
  6. data/lib/markaby/metaid.rb +16 -0
  7. data/lib/markaby/rails/action_controller_helpers.rb +13 -0
  8. data/lib/markaby/rails/template_handler.rb +21 -0
  9. data/lib/markaby/tags.rb +179 -0
  10. data/lib/markaby.rb +39 -0
  11. data/test/app_root/app/controllers/application_controller.rb +2 -0
  12. data/test/app_root/app/controllers/markaby_controller.rb +37 -0
  13. data/test/app_root/app/helpers/test_helper.rb +7 -0
  14. data/test/app_root/app/views/markaby/_monkeys.mab +12 -0
  15. data/test/app_root/app/views/markaby/broken.mab +7 -0
  16. data/test/app_root/app/views/markaby/create.mab +9 -0
  17. data/test/app_root/app/views/markaby/index.mab +7 -0
  18. data/test/app_root/app/views/markaby/multiple_forms.mab +7 -0
  19. data/test/app_root/config/boot.rb +115 -0
  20. data/test/app_root/config/database.yml +31 -0
  21. data/test/app_root/config/environment.rb +14 -0
  22. data/test/app_root/config/environments/in_memory.rb +0 -0
  23. data/test/app_root/config/environments/mysql.rb +0 -0
  24. data/test/app_root/config/environments/postgresql.rb +0 -0
  25. data/test/app_root/config/environments/sqlite.rb +0 -0
  26. data/test/app_root/config/environments/sqlite3.rb +0 -0
  27. data/test/app_root/config/routes.rb +4 -0
  28. data/test/app_root/lib/console_with_fixtures.rb +4 -0
  29. data/test/app_root/log/in_memory.log +4215 -0
  30. data/test/app_root/script/console +7 -0
  31. data/test/markaby_controller_test.rb +73 -0
  32. data/test/markaby_test.rb +122 -0
  33. data/test/monkeys.html +13 -0
  34. data/test/test_helper.rb +28 -0
  35. metadata +102 -0
@@ -0,0 +1,31 @@
1
+ in_memory:
2
+ adapter: sqlite3
3
+ database: ":memory:"
4
+ verbosity: quiet
5
+ pool: 5
6
+ timeout: 5000
7
+ sqlite:
8
+ adapter: sqlite
9
+ dbfile: plugin_test.sqlite.db
10
+ pool: 5
11
+ timeout: 5000
12
+ sqlite3:
13
+ adapter: sqlite3
14
+ dbfile: plugin_test.sqlite3.db
15
+ pool: 5
16
+ timeout: 5000
17
+ postgresql:
18
+ adapter: postgresql
19
+ username: postgres
20
+ password: postgres
21
+ database: plugin_test
22
+ pool: 5
23
+ timeout: 5000
24
+ mysql:
25
+ adapter: mysql
26
+ host: localhost
27
+ username: root
28
+ password:
29
+ database: plugin_test
30
+ pool: 5
31
+ timeout: 5000
@@ -0,0 +1,14 @@
1
+ require File.join(File.dirname(__FILE__), 'boot')
2
+
3
+ Rails::Initializer.run do |config|
4
+ config.cache_classes = false
5
+ config.whiny_nils = true
6
+ config.action_controller.session = {:key => 'rails_session', :secret => 'd229e4d22437432705ab3985d4d246'}
7
+ config.plugin_locators.unshift(
8
+ Class.new(Rails::Plugin::Locator) do
9
+ def plugins
10
+ [Rails::Plugin.new(File.expand_path('.'))]
11
+ end
12
+ end
13
+ ) unless defined?(PluginTestHelper::PluginLocator)
14
+ end
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,4 @@
1
+ ActionController::Routing::Routes.draw do |map|
2
+ map.connect ':controller/:action/:id'
3
+ map.connect ':controller/:action/:id.:format'
4
+ end
@@ -0,0 +1,4 @@
1
+ # Loads fixtures into the database when running the test app via the console
2
+ (ENV['FIXTURES'] ? ENV['FIXTURES'].split(/,/) : Dir.glob(File.join(Rails.root, '../fixtures/*.{yml,csv}'))).each do |fixture_file|
3
+ Fixtures.create_fixtures(File.join(Rails.root, '../fixtures'), File.basename(fixture_file, '.*'))
4
+ end
@@ -0,0 +1,4215 @@
1
+ # Logfile created on Thu Apr 23 10:09:12 -0700 2009 SQL (0.2ms)  SELECT name
2
+ FROM sqlite_master
3
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4
+ 
5
+ SQL (0.1ms) select sqlite_version(*)
6
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
7
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
8
+ SQL (0.1ms)  SELECT name
9
+ FROM sqlite_master
10
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
11
+ 
12
+ SQL (0.2ms)  SELECT name
13
+ FROM sqlite_master
14
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
15
+ 
16
+ SQL (0.2ms)  SELECT name
17
+ FROM sqlite_master
18
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
19
+ 
20
+ SQL (0.2ms)  SELECT name
21
+ FROM sqlite_master
22
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
23
+ 
24
+ SQL (0.1ms)  SELECT name
25
+ FROM sqlite_master
26
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
27
+ 
28
+ SQL (0.2ms)  SELECT name
29
+ FROM sqlite_master
30
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
31
+ 
32
+ SQL (0.2ms)  SELECT name
33
+ FROM sqlite_master
34
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
35
+ 
36
+ SQL (0.2ms)  SELECT name
37
+ FROM sqlite_master
38
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
39
+ 
40
+ SQL (0.1ms) select sqlite_version(*)
41
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
42
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
43
+ SQL (0.1ms)  SELECT name
44
+ FROM sqlite_master
45
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
46
+ 
47
+ SQL (0.3ms)  SELECT name
48
+ FROM sqlite_master
49
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
50
+ 
51
+ SQL (0.2ms)  SELECT name
52
+ FROM sqlite_master
53
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
54
+ 
55
+ SQL (0.1ms) select sqlite_version(*)
56
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
57
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
58
+ SQL (0.1ms)  SELECT name
59
+ FROM sqlite_master
60
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
61
+ 
62
+ SQL (0.2ms)  SELECT name
63
+ FROM sqlite_master
64
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
65
+ 
66
+ SQL (0.2ms)  SELECT name
67
+ FROM sqlite_master
68
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
69
+ 
70
+ SQL (0.1ms) select sqlite_version(*)
71
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
72
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
73
+ SQL (0.1ms)  SELECT name
74
+ FROM sqlite_master
75
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
76
+ 
77
+ SQL (0.2ms)  SELECT name
78
+ FROM sqlite_master
79
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
80
+ 
81
+ SQL (0.1ms) select sqlite_version(*)
82
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
83
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
84
+ SQL (0.1ms)  SELECT name
85
+ FROM sqlite_master
86
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
87
+ 
88
+ SQL (0.2ms)  SELECT name
89
+ FROM sqlite_master
90
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
91
+ 
92
+ SQL (0.1ms) select sqlite_version(*)
93
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
94
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
95
+ SQL (0.1ms)  SELECT name
96
+ FROM sqlite_master
97
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
98
+ 
99
+ SQL (0.2ms)  SELECT name
100
+ FROM sqlite_master
101
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
102
+ 
103
+ SQL (0.1ms) select sqlite_version(*)
104
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
105
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
106
+ SQL (0.1ms)  SELECT name
107
+ FROM sqlite_master
108
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
109
+ 
110
+ SQL (0.2ms)  SELECT name
111
+ FROM sqlite_master
112
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
113
+ 
114
+ SQL (0.1ms) select sqlite_version(*)
115
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
116
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
117
+ SQL (0.1ms)  SELECT name
118
+ FROM sqlite_master
119
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
120
+ 
121
+ SQL (0.2ms)  SELECT name
122
+ FROM sqlite_master
123
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
124
+ 
125
+ SQL (0.1ms) select sqlite_version(*)
126
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
127
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
128
+ SQL (0.1ms)  SELECT name
129
+ FROM sqlite_master
130
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
131
+ 
132
+ SQL (0.2ms)  SELECT name
133
+ FROM sqlite_master
134
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
135
+ 
136
+ SQL (0.1ms) select sqlite_version(*)
137
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
138
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
139
+ SQL (0.1ms)  SELECT name
140
+ FROM sqlite_master
141
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
142
+ 
143
+ SQL (0.2ms)  SELECT name
144
+ FROM sqlite_master
145
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
146
+ 
147
+ SQL (0.1ms) select sqlite_version(*)
148
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
149
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
150
+ SQL (0.1ms)  SELECT name
151
+ FROM sqlite_master
152
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
153
+ 
154
+ SQL (0.2ms)  SELECT name
155
+ FROM sqlite_master
156
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
157
+ 
158
+ SQL (0.1ms) select sqlite_version(*)
159
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
160
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
161
+ SQL (0.1ms)  SELECT name
162
+ FROM sqlite_master
163
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
164
+ 
165
+ SQL (0.2ms)  SELECT name
166
+ FROM sqlite_master
167
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
168
+ 
169
+ SQL (0.2ms) select sqlite_version(*)
170
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
171
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
172
+ SQL (0.2ms)  SELECT name
173
+ FROM sqlite_master
174
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
175
+ 
176
+ SQL (0.2ms)  SELECT name
177
+ FROM sqlite_master
178
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
179
+ 
180
+ SQL (0.1ms) select sqlite_version(*)
181
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
182
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
183
+ SQL (0.2ms)  SELECT name
184
+ FROM sqlite_master
185
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
186
+ 
187
+ SQL (0.2ms)  SELECT name
188
+ FROM sqlite_master
189
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
190
+ 
191
+ SQL (0.1ms) select sqlite_version(*)
192
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
193
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
194
+ SQL (0.1ms)  SELECT name
195
+ FROM sqlite_master
196
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
197
+ 
198
+ SQL (0.2ms)  SELECT name
199
+ FROM sqlite_master
200
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
201
+ 
202
+ SQL (0.2ms) select sqlite_version(*)
203
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
204
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
205
+ SQL (0.2ms)  SELECT name
206
+ FROM sqlite_master
207
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
208
+ 
209
+ SQL (0.2ms)  SELECT name
210
+ FROM sqlite_master
211
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
212
+ 
213
+ SQL (0.1ms) select sqlite_version(*)
214
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
215
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
216
+ SQL (0.1ms)  SELECT name
217
+ FROM sqlite_master
218
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
219
+ 
220
+ SQL (0.2ms)  SELECT name
221
+ FROM sqlite_master
222
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
223
+ 
224
+ SQL (0.1ms) select sqlite_version(*)
225
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
226
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
227
+ SQL (0.1ms)  SELECT name
228
+ FROM sqlite_master
229
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
230
+ 
231
+ SQL (0.2ms)  SELECT name
232
+ FROM sqlite_master
233
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
234
+ 
235
+ SQL (0.1ms) select sqlite_version(*)
236
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
237
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
238
+ SQL (0.1ms)  SELECT name
239
+ FROM sqlite_master
240
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
241
+ 
242
+ SQL (0.2ms)  SELECT name
243
+ FROM sqlite_master
244
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
245
+ 
246
+ SQL (0.1ms) select sqlite_version(*)
247
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
248
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
249
+ SQL (0.1ms)  SELECT name
250
+ FROM sqlite_master
251
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
252
+ 
253
+ SQL (0.2ms)  SELECT name
254
+ FROM sqlite_master
255
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
256
+ 
257
+ SQL (0.1ms) select sqlite_version(*)
258
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
259
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
260
+ SQL (0.1ms)  SELECT name
261
+ FROM sqlite_master
262
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
263
+ 
264
+ SQL (0.2ms)  SELECT name
265
+ FROM sqlite_master
266
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
267
+ 
268
+ SQL (0.2ms) select sqlite_version(*)
269
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
270
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
271
+ SQL (0.2ms)  SELECT name
272
+ FROM sqlite_master
273
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
274
+ 
275
+ SQL (0.2ms)  SELECT name
276
+ FROM sqlite_master
277
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
278
+ 
279
+ SQL (0.1ms) select sqlite_version(*)
280
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
281
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
282
+ SQL (0.2ms)  SELECT name
283
+ FROM sqlite_master
284
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
285
+ 
286
+ SQL (0.2ms)  SELECT name
287
+ FROM sqlite_master
288
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
289
+ 
290
+ SQL (0.1ms) select sqlite_version(*)
291
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
292
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
293
+ SQL (0.1ms)  SELECT name
294
+ FROM sqlite_master
295
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
296
+ 
297
+ SQL (0.2ms)  SELECT name
298
+ FROM sqlite_master
299
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
300
+ 
301
+ SQL (0.1ms) select sqlite_version(*)
302
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
303
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
304
+ SQL (0.1ms)  SELECT name
305
+ FROM sqlite_master
306
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
307
+ 
308
+ SQL (0.2ms)  SELECT name
309
+ FROM sqlite_master
310
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
311
+ 
312
+ SQL (0.1ms) select sqlite_version(*)
313
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
314
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
315
+ SQL (0.1ms)  SELECT name
316
+ FROM sqlite_master
317
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
318
+ 
319
+ SQL (0.2ms)  SELECT name
320
+ FROM sqlite_master
321
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
322
+ 
323
+ SQL (0.1ms) select sqlite_version(*)
324
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
325
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
326
+ SQL (0.1ms)  SELECT name
327
+ FROM sqlite_master
328
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
329
+ 
330
+ SQL (0.2ms)  SELECT name
331
+ FROM sqlite_master
332
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
333
+ 
334
+ SQL (0.1ms) select sqlite_version(*)
335
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
336
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
337
+ SQL (0.1ms)  SELECT name
338
+ FROM sqlite_master
339
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
340
+ 
341
+ SQL (0.2ms)  SELECT name
342
+ FROM sqlite_master
343
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
344
+ 
345
+ SQL (0.1ms) select sqlite_version(*)
346
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
347
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
348
+ SQL (0.1ms)  SELECT name
349
+ FROM sqlite_master
350
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
351
+ 
352
+ SQL (0.2ms)  SELECT name
353
+ FROM sqlite_master
354
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
355
+ 
356
+ SQL (0.1ms) select sqlite_version(*)
357
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
358
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
359
+ SQL (0.1ms)  SELECT name
360
+ FROM sqlite_master
361
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
362
+ 
363
+ SQL (0.1ms)  SELECT name
364
+ FROM sqlite_master
365
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
366
+ 
367
+ SQL (0.1ms) select sqlite_version(*)
368
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
369
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
370
+ SQL (0.2ms)  SELECT name
371
+ FROM sqlite_master
372
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
373
+ 
374
+ SQL (0.2ms)  SELECT name
375
+ FROM sqlite_master
376
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
377
+ 
378
+ SQL (0.1ms) select sqlite_version(*)
379
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
380
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
381
+ SQL (0.1ms)  SELECT name
382
+ FROM sqlite_master
383
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
384
+ 
385
+ SQL (0.2ms)  SELECT name
386
+ FROM sqlite_master
387
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
388
+ 
389
+ SQL (0.2ms) select sqlite_version(*)
390
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
391
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
392
+ SQL (0.2ms)  SELECT name
393
+ FROM sqlite_master
394
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
395
+ 
396
+ SQL (0.2ms)  SELECT name
397
+ FROM sqlite_master
398
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
399
+ 
400
+ SQL (0.2ms) select sqlite_version(*)
401
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
402
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
403
+ SQL (0.2ms)  SELECT name
404
+ FROM sqlite_master
405
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
406
+ 
407
+ SQL (0.2ms)  SELECT name
408
+ FROM sqlite_master
409
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
410
+ 
411
+ SQL (0.1ms) select sqlite_version(*)
412
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
413
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
414
+ SQL (0.1ms)  SELECT name
415
+ FROM sqlite_master
416
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
417
+ 
418
+ SQL (0.2ms)  SELECT name
419
+ FROM sqlite_master
420
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
421
+ 
422
+ SQL (0.1ms) select sqlite_version(*)
423
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
424
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
425
+ SQL (0.1ms)  SELECT name
426
+ FROM sqlite_master
427
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
428
+ 
429
+ SQL (0.2ms)  SELECT name
430
+ FROM sqlite_master
431
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
432
+ 
433
+ SQL (0.1ms) select sqlite_version(*)
434
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
435
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
436
+ SQL (0.1ms)  SELECT name
437
+ FROM sqlite_master
438
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
439
+ 
440
+ SQL (0.2ms)  SELECT name
441
+ FROM sqlite_master
442
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
443
+ 
444
+ SQL (0.1ms) select sqlite_version(*)
445
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
446
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
447
+ SQL (0.1ms)  SELECT name
448
+ FROM sqlite_master
449
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
450
+ 
451
+ SQL (0.2ms)  SELECT name
452
+ FROM sqlite_master
453
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
454
+ 
455
+ SQL (0.1ms) select sqlite_version(*)
456
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
457
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
458
+ SQL (0.1ms)  SELECT name
459
+ FROM sqlite_master
460
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
461
+ 
462
+ SQL (0.2ms)  SELECT name
463
+ FROM sqlite_master
464
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
465
+ 
466
+ SQL (0.1ms) select sqlite_version(*)
467
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
468
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
469
+ SQL (0.1ms)  SELECT name
470
+ FROM sqlite_master
471
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
472
+ 
473
+ SQL (0.2ms)  SELECT name
474
+ FROM sqlite_master
475
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
476
+ 
477
+ SQL (0.1ms) select sqlite_version(*)
478
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
479
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
480
+ SQL (0.1ms)  SELECT name
481
+ FROM sqlite_master
482
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
483
+ 
484
+ SQL (0.2ms)  SELECT name
485
+ FROM sqlite_master
486
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
487
+ 
488
+ SQL (0.1ms) select sqlite_version(*)
489
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
490
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
491
+ SQL (0.1ms)  SELECT name
492
+ FROM sqlite_master
493
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
494
+ 
495
+ SQL (0.2ms)  SELECT name
496
+ FROM sqlite_master
497
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
498
+ 
499
+ SQL (0.1ms) select sqlite_version(*)
500
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
501
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
502
+ SQL (0.1ms)  SELECT name
503
+ FROM sqlite_master
504
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
505
+ 
506
+ SQL (0.2ms)  SELECT name
507
+ FROM sqlite_master
508
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
509
+ 
510
+ SQL (0.1ms) select sqlite_version(*)
511
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
512
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
513
+ SQL (0.1ms)  SELECT name
514
+ FROM sqlite_master
515
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
516
+ 
517
+ SQL (0.2ms)  SELECT name
518
+ FROM sqlite_master
519
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
520
+ 
521
+ SQL (0.1ms) select sqlite_version(*)
522
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
523
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
524
+ SQL (0.1ms)  SELECT name
525
+ FROM sqlite_master
526
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
527
+ 
528
+ SQL (0.2ms)  SELECT name
529
+ FROM sqlite_master
530
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
531
+ 
532
+ SQL (0.1ms) select sqlite_version(*)
533
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
534
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
535
+ SQL (0.1ms)  SELECT name
536
+ FROM sqlite_master
537
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
538
+ 
539
+ SQL (0.2ms)  SELECT name
540
+ FROM sqlite_master
541
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
542
+ 
543
+ SQL (0.1ms) select sqlite_version(*)
544
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
545
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
546
+ SQL (0.1ms)  SELECT name
547
+ FROM sqlite_master
548
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
549
+ 
550
+ SQL (0.2ms)  SELECT name
551
+ FROM sqlite_master
552
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
553
+ 
554
+ SQL (0.1ms) select sqlite_version(*)
555
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
556
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
557
+ SQL (0.1ms)  SELECT name
558
+ FROM sqlite_master
559
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
560
+ 
561
+ SQL (0.2ms)  SELECT name
562
+ FROM sqlite_master
563
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
564
+ 
565
+ SQL (0.1ms) select sqlite_version(*)
566
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
567
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
568
+ SQL (0.1ms)  SELECT name
569
+ FROM sqlite_master
570
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
571
+ 
572
+ SQL (0.2ms)  SELECT name
573
+ FROM sqlite_master
574
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
575
+ 
576
+ SQL (0.2ms) select sqlite_version(*)
577
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
578
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
579
+ SQL (0.1ms)  SELECT name
580
+ FROM sqlite_master
581
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
582
+ 
583
+ SQL (0.2ms)  SELECT name
584
+ FROM sqlite_master
585
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
586
+ 
587
+ SQL (0.1ms) select sqlite_version(*)
588
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
589
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
590
+ SQL (0.1ms)  SELECT name
591
+ FROM sqlite_master
592
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
593
+ 
594
+ SQL (0.2ms)  SELECT name
595
+ FROM sqlite_master
596
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
597
+ 
598
+ SQL (0.1ms) select sqlite_version(*)
599
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
600
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
601
+ SQL (0.1ms)  SELECT name
602
+ FROM sqlite_master
603
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
604
+ 
605
+ SQL (0.2ms)  SELECT name
606
+ FROM sqlite_master
607
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
608
+ 
609
+ SQL (0.1ms) select sqlite_version(*)
610
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
611
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
612
+ SQL (0.1ms)  SELECT name
613
+ FROM sqlite_master
614
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
615
+ 
616
+ SQL (0.2ms)  SELECT name
617
+ FROM sqlite_master
618
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
619
+ 
620
+ SQL (0.1ms) select sqlite_version(*)
621
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
622
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
623
+ SQL (0.1ms)  SELECT name
624
+ FROM sqlite_master
625
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
626
+ 
627
+ SQL (0.2ms)  SELECT name
628
+ FROM sqlite_master
629
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
630
+ 
631
+ SQL (0.1ms) select sqlite_version(*)
632
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
633
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
634
+ SQL (0.1ms)  SELECT name
635
+ FROM sqlite_master
636
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
637
+ 
638
+ SQL (0.2ms)  SELECT name
639
+ FROM sqlite_master
640
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
641
+ 
642
+ SQL (0.1ms) select sqlite_version(*)
643
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
644
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
645
+ SQL (0.1ms)  SELECT name
646
+ FROM sqlite_master
647
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
648
+ 
649
+ SQL (0.2ms)  SELECT name
650
+ FROM sqlite_master
651
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
652
+ 
653
+ SQL (0.1ms) select sqlite_version(*)
654
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
655
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
656
+ SQL (0.1ms)  SELECT name
657
+ FROM sqlite_master
658
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
659
+ 
660
+ SQL (0.2ms)  SELECT name
661
+ FROM sqlite_master
662
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
663
+ 
664
+ SQL (0.1ms) select sqlite_version(*)
665
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
666
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
667
+ SQL (0.1ms)  SELECT name
668
+ FROM sqlite_master
669
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
670
+ 
671
+ SQL (0.2ms)  SELECT name
672
+ FROM sqlite_master
673
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
674
+ 
675
+ SQL (0.1ms) select sqlite_version(*)
676
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
677
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
678
+ SQL (0.1ms)  SELECT name
679
+ FROM sqlite_master
680
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
681
+ 
682
+ SQL (0.2ms)  SELECT name
683
+ FROM sqlite_master
684
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
685
+ 
686
+ SQL (0.1ms) select sqlite_version(*)
687
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
688
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
689
+ SQL (0.2ms)  SELECT name
690
+ FROM sqlite_master
691
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
692
+ 
693
+
694
+
695
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:12:26) [GET]
696
+ Completed in 24ms (View: 22, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
697
+
698
+
699
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:12:26) [GET]
700
+ Rendering markaby/create
701
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
702
+
703
+
704
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:12:26) [GET]
705
+ Rendering markaby/index
706
+ Completed in 2ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby]
707
+
708
+
709
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:12:26) [GET]
710
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
711
+
712
+
713
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:12:26) [GET]
714
+
715
+
716
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:12:26) [GET]
717
+ Rendered markaby/_monkeys (1.9ms)
718
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
719
+
720
+
721
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:12:26) [GET]
722
+ Rendering markaby/broken
723
+ SQL (0.2ms)  SELECT name
724
+ FROM sqlite_master
725
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
726
+ 
727
+ SQL (0.1ms) select sqlite_version(*)
728
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
729
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
730
+ SQL (0.1ms)  SELECT name
731
+ FROM sqlite_master
732
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
733
+ 
734
+
735
+
736
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:13:04) [GET]
737
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
738
+
739
+
740
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:13:04) [GET]
741
+ Rendering markaby/create
742
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
743
+
744
+
745
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:13:04) [GET]
746
+ Rendering markaby/index
747
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby]
748
+
749
+
750
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:13:04) [GET]
751
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
752
+
753
+
754
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:13:04) [GET]
755
+
756
+
757
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:13:04) [GET]
758
+ Rendered markaby/_monkeys (1.9ms)
759
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
760
+
761
+
762
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:13:04) [GET]
763
+ Rendering markaby/broken
764
+ SQL (0.2ms)  SELECT name
765
+ FROM sqlite_master
766
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
767
+ 
768
+ SQL (0.1ms) select sqlite_version(*)
769
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
770
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
771
+ SQL (0.1ms)  SELECT name
772
+ FROM sqlite_master
773
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
774
+ 
775
+
776
+
777
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:13:48) [GET]
778
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
779
+
780
+
781
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:13:48) [GET]
782
+ Rendering markaby/create
783
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
784
+
785
+
786
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:13:48) [GET]
787
+ Rendering markaby/index
788
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
789
+
790
+
791
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:13:48) [GET]
792
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
793
+
794
+
795
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:13:48) [GET]
796
+
797
+
798
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:13:48) [GET]
799
+ Rendered markaby/_monkeys (1.8ms)
800
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
801
+
802
+
803
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:13:48) [GET]
804
+ Rendering markaby/broken
805
+ SQL (0.2ms)  SELECT name
806
+ FROM sqlite_master
807
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
808
+ 
809
+ SQL (0.1ms) select sqlite_version(*)
810
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
811
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
812
+ SQL (0.1ms)  SELECT name
813
+ FROM sqlite_master
814
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
815
+ 
816
+
817
+
818
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:15:59) [GET]
819
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
820
+
821
+
822
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:15:59) [GET]
823
+ Rendering markaby/create
824
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
825
+
826
+
827
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:15:59) [GET]
828
+ Rendering markaby/index
829
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
830
+
831
+
832
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:15:59) [GET]
833
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
834
+
835
+
836
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:15:59) [GET]
837
+ Rendering markaby/multiple_forms
838
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
839
+
840
+
841
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:15:59) [GET]
842
+ Rendered markaby/_monkeys (2.4ms)
843
+ Completed in 6ms (View: 6, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
844
+
845
+
846
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:15:59) [GET]
847
+ Rendering markaby/broken
848
+ SQL (0.2ms)  SELECT name
849
+ FROM sqlite_master
850
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
851
+ 
852
+ SQL (0.1ms) select sqlite_version(*)
853
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
854
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
855
+ SQL (0.1ms)  SELECT name
856
+ FROM sqlite_master
857
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
858
+ 
859
+
860
+
861
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:17:28) [GET]
862
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
863
+
864
+
865
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:17:28) [GET]
866
+ Rendering markaby/create
867
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
868
+
869
+
870
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:17:28) [GET]
871
+ Rendering markaby/index
872
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
873
+
874
+
875
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:17:28) [GET]
876
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
877
+
878
+
879
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:17:28) [GET]
880
+ Rendering markaby/multiple_forms
881
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
882
+
883
+
884
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:17:28) [GET]
885
+ Rendered markaby/_monkeys (1.9ms)
886
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
887
+
888
+
889
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:17:28) [GET]
890
+ Rendering markaby/broken
891
+ SQL (0.2ms)  SELECT name
892
+ FROM sqlite_master
893
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
894
+ 
895
+ SQL (0.1ms) select sqlite_version(*)
896
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
897
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
898
+ SQL (0.1ms)  SELECT name
899
+ FROM sqlite_master
900
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
901
+ 
902
+
903
+
904
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:18:05) [GET]
905
+ Completed in 6ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
906
+
907
+
908
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:18:05) [GET]
909
+ Rendering markaby/create
910
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
911
+
912
+
913
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:18:05) [GET]
914
+ Rendering markaby/index
915
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
916
+
917
+
918
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:18:05) [GET]
919
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
920
+
921
+
922
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:18:05) [GET]
923
+ Rendering markaby/multiple_forms
924
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
925
+
926
+
927
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:18:05) [GET]
928
+ Rendered markaby/_monkeys (2.5ms)
929
+ Completed in 6ms (View: 6, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
930
+
931
+
932
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:18:05) [GET]
933
+ Rendering markaby/broken
934
+ SQL (0.2ms)  SELECT name
935
+ FROM sqlite_master
936
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
937
+ 
938
+ SQL (0.2ms) select sqlite_version(*)
939
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
940
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
941
+ SQL (0.2ms)  SELECT name
942
+ FROM sqlite_master
943
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
944
+ 
945
+ SQL (0.2ms)  SELECT name
946
+ FROM sqlite_master
947
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
948
+ 
949
+ SQL (0.1ms) select sqlite_version(*)
950
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
951
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
952
+ SQL (0.1ms)  SELECT name
953
+ FROM sqlite_master
954
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
955
+ 
956
+
957
+
958
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:19:32) [GET]
959
+ Completed in 6ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
960
+
961
+
962
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:19:32) [GET]
963
+ Rendering markaby/create
964
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
965
+
966
+
967
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:19:32) [GET]
968
+ Rendering markaby/index
969
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
970
+
971
+
972
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:19:32) [GET]
973
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
974
+
975
+
976
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:19:32) [GET]
977
+ Rendering markaby/multiple_forms
978
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
979
+
980
+
981
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:19:32) [GET]
982
+ Rendered markaby/_monkeys (1.9ms)
983
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
984
+
985
+
986
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:19:32) [GET]
987
+ Rendering markaby/broken
988
+ SQL (0.2ms)  SELECT name
989
+ FROM sqlite_master
990
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
991
+ 
992
+ SQL (0.1ms) select sqlite_version(*)
993
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
994
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
995
+ SQL (0.1ms)  SELECT name
996
+ FROM sqlite_master
997
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
998
+ 
999
+
1000
+
1001
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:20:43) [GET]
1002
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1003
+
1004
+
1005
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:20:43) [GET]
1006
+ Rendering markaby/create
1007
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
1008
+
1009
+
1010
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:20:43) [GET]
1011
+ Rendering markaby/index
1012
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
1013
+
1014
+
1015
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:20:43) [GET]
1016
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1017
+
1018
+
1019
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:20:43) [GET]
1020
+ Rendering markaby/multiple_forms
1021
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1022
+
1023
+
1024
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:20:43) [GET]
1025
+ Rendered markaby/_monkeys (2.2ms)
1026
+ Completed in 6ms (View: 6, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1027
+
1028
+
1029
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:20:43) [GET]
1030
+
1031
+
1032
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:20:43) [GET]
1033
+ Rendering markaby/broken
1034
+ SQL (0.2ms)  SELECT name
1035
+ FROM sqlite_master
1036
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1037
+ 
1038
+ SQL (0.1ms) select sqlite_version(*)
1039
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1040
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1041
+ SQL (0.1ms)  SELECT name
1042
+ FROM sqlite_master
1043
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1044
+ 
1045
+
1046
+
1047
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:25:07) [GET]
1048
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1049
+
1050
+
1051
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:25:07) [GET]
1052
+ Rendering markaby/create
1053
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
1054
+
1055
+
1056
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:25:07) [GET]
1057
+ Rendering markaby/index
1058
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
1059
+
1060
+
1061
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:25:07) [GET]
1062
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1063
+
1064
+
1065
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:25:07) [GET]
1066
+ Rendering markaby/multiple_forms
1067
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1068
+
1069
+
1070
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:25:07) [GET]
1071
+ Rendered markaby/_monkeys (1.8ms)
1072
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1073
+
1074
+
1075
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:25:07) [GET]
1076
+
1077
+
1078
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:25:07) [GET]
1079
+ Rendering markaby/broken
1080
+ SQL (0.2ms)  SELECT name
1081
+ FROM sqlite_master
1082
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1083
+ 
1084
+ SQL (0.1ms) select sqlite_version(*)
1085
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1086
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1087
+ SQL (0.1ms)  SELECT name
1088
+ FROM sqlite_master
1089
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1090
+ 
1091
+
1092
+
1093
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:25:22) [GET]
1094
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1095
+
1096
+
1097
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:25:22) [GET]
1098
+ Rendering markaby/create
1099
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
1100
+
1101
+
1102
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:25:22) [GET]
1103
+ Rendering markaby/index
1104
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
1105
+
1106
+
1107
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:25:22) [GET]
1108
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1109
+
1110
+
1111
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:25:22) [GET]
1112
+ Rendering markaby/multiple_forms
1113
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1114
+
1115
+
1116
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:25:22) [GET]
1117
+ Rendered markaby/_monkeys (1.8ms)
1118
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1119
+
1120
+
1121
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:25:22) [GET]
1122
+
1123
+
1124
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:25:22) [GET]
1125
+ Rendering markaby/broken
1126
+ SQL (0.2ms)  SELECT name
1127
+ FROM sqlite_master
1128
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1129
+ 
1130
+ SQL (0.2ms) select sqlite_version(*)
1131
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1132
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1133
+ SQL (0.1ms)  SELECT name
1134
+ FROM sqlite_master
1135
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1136
+ 
1137
+
1138
+
1139
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:26:01) [GET]
1140
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1141
+
1142
+
1143
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:26:01) [GET]
1144
+ Rendering markaby/create
1145
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
1146
+
1147
+
1148
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:26:01) [GET]
1149
+ Rendering markaby/index
1150
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
1151
+
1152
+
1153
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:26:01) [GET]
1154
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1155
+
1156
+
1157
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:26:01) [GET]
1158
+ Rendering markaby/multiple_forms
1159
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1160
+
1161
+
1162
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:26:01) [GET]
1163
+ Rendered markaby/_monkeys (1.9ms)
1164
+ Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1165
+
1166
+
1167
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:26:01) [GET]
1168
+
1169
+
1170
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:26:01) [GET]
1171
+ Rendering markaby/broken
1172
+ SQL (0.2ms)  SELECT name
1173
+ FROM sqlite_master
1174
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1175
+ 
1176
+ SQL (0.1ms) select sqlite_version(*)
1177
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1178
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1179
+ SQL (0.2ms)  SELECT name
1180
+ FROM sqlite_master
1181
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1182
+ 
1183
+
1184
+
1185
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:27:28) [GET]
1186
+ Completed in 6ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1187
+
1188
+
1189
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:27:28) [GET]
1190
+ Rendering markaby/create
1191
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
1192
+
1193
+
1194
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:27:28) [GET]
1195
+ Rendering markaby/index
1196
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
1197
+
1198
+
1199
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:27:28) [GET]
1200
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1201
+
1202
+
1203
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:27:28) [GET]
1204
+ Rendering markaby/multiple_forms
1205
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1206
+
1207
+
1208
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:27:28) [GET]
1209
+ Rendered markaby/_monkeys (1.9ms)
1210
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1211
+
1212
+
1213
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:27:28) [GET]
1214
+
1215
+
1216
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:27:28) [GET]
1217
+ Rendering markaby/broken
1218
+ SQL (0.2ms)  SELECT name
1219
+ FROM sqlite_master
1220
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1221
+ 
1222
+ SQL (0.2ms) select sqlite_version(*)
1223
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1224
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1225
+ SQL (0.1ms)  SELECT name
1226
+ FROM sqlite_master
1227
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1228
+ 
1229
+
1230
+
1231
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:27:46) [GET]
1232
+ Completed in 6ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1233
+
1234
+
1235
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:27:46) [GET]
1236
+ Rendering markaby/create
1237
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
1238
+
1239
+
1240
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:27:46) [GET]
1241
+ Rendering markaby/index
1242
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
1243
+
1244
+
1245
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:27:46) [GET]
1246
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1247
+
1248
+
1249
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:27:47) [GET]
1250
+ Rendering markaby/multiple_forms
1251
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1252
+
1253
+
1254
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:27:47) [GET]
1255
+ Rendered markaby/_monkeys (1.8ms)
1256
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1257
+
1258
+
1259
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:27:47) [GET]
1260
+
1261
+
1262
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:27:47) [GET]
1263
+ Rendering markaby/broken
1264
+ SQL (0.2ms)  SELECT name
1265
+ FROM sqlite_master
1266
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1267
+ 
1268
+ SQL (0.1ms) select sqlite_version(*)
1269
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1270
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1271
+ SQL (0.1ms)  SELECT name
1272
+ FROM sqlite_master
1273
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1274
+ 
1275
+
1276
+
1277
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:28:32) [GET]
1278
+ Completed in 6ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1279
+
1280
+
1281
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:28:32) [GET]
1282
+ Rendering markaby/create
1283
+ Completed in 4ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
1284
+
1285
+
1286
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:28:32) [GET]
1287
+ Rendering markaby/index
1288
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
1289
+
1290
+
1291
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:28:32) [GET]
1292
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1293
+
1294
+
1295
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:28:32) [GET]
1296
+ Rendering markaby/multiple_forms
1297
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1298
+
1299
+
1300
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:28:32) [GET]
1301
+ Rendered markaby/_monkeys (1.8ms)
1302
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1303
+
1304
+
1305
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:28:32) [GET]
1306
+
1307
+
1308
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:28:32) [GET]
1309
+ Rendering markaby/broken
1310
+ SQL (0.2ms)  SELECT name
1311
+ FROM sqlite_master
1312
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1313
+ 
1314
+ SQL (0.2ms) select sqlite_version(*)
1315
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1316
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1317
+ SQL (0.1ms)  SELECT name
1318
+ FROM sqlite_master
1319
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1320
+ 
1321
+
1322
+
1323
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:30:22) [GET]
1324
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1325
+
1326
+
1327
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:30:22) [GET]
1328
+ Rendering markaby/create
1329
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
1330
+
1331
+
1332
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:30:22) [GET]
1333
+ Rendering markaby/index
1334
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
1335
+
1336
+
1337
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:30:22) [GET]
1338
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1339
+
1340
+
1341
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:30:22) [GET]
1342
+ Rendering markaby/multiple_forms
1343
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1344
+
1345
+
1346
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:30:22) [GET]
1347
+ Rendered markaby/_monkeys (1.8ms)
1348
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1349
+
1350
+
1351
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:30:22) [GET]
1352
+
1353
+
1354
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:30:22) [GET]
1355
+ Rendering markaby/broken
1356
+ SQL (0.2ms)  SELECT name
1357
+ FROM sqlite_master
1358
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1359
+ 
1360
+ SQL (0.1ms) select sqlite_version(*)
1361
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1362
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1363
+ SQL (0.1ms)  SELECT name
1364
+ FROM sqlite_master
1365
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1366
+ 
1367
+
1368
+
1369
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:30:59) [GET]
1370
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1371
+
1372
+
1373
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:30:59) [GET]
1374
+ Rendering markaby/create
1375
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
1376
+
1377
+
1378
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:30:59) [GET]
1379
+ Rendering markaby/index
1380
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
1381
+
1382
+
1383
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:30:59) [GET]
1384
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1385
+
1386
+
1387
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:30:59) [GET]
1388
+ Rendering markaby/multiple_forms
1389
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1390
+
1391
+
1392
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:30:59) [GET]
1393
+ Rendered markaby/_monkeys (2.3ms)
1394
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1395
+
1396
+
1397
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:30:59) [GET]
1398
+
1399
+
1400
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:30:59) [GET]
1401
+ Rendering markaby/broken
1402
+ SQL (0.2ms)  SELECT name
1403
+ FROM sqlite_master
1404
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1405
+ 
1406
+ SQL (0.1ms) select sqlite_version(*)
1407
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1408
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1409
+ SQL (0.1ms)  SELECT name
1410
+ FROM sqlite_master
1411
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1412
+ 
1413
+
1414
+
1415
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:31:04) [GET]
1416
+ Completed in 6ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1417
+
1418
+
1419
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:31:04) [GET]
1420
+ Rendering markaby/create
1421
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/create]
1422
+
1423
+
1424
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:31:04) [GET]
1425
+ Rendering markaby/index
1426
+ Completed in 11ms (View: 11, DB: 0) | 200 OK [http://test.host/markaby]
1427
+
1428
+
1429
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:31:04) [GET]
1430
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1431
+
1432
+
1433
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:31:04) [GET]
1434
+ Rendering markaby/multiple_forms
1435
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1436
+
1437
+
1438
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:31:04) [GET]
1439
+ Rendered markaby/_monkeys (2.0ms)
1440
+ Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1441
+
1442
+
1443
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:31:04) [GET]
1444
+
1445
+
1446
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:31:04) [GET]
1447
+ Rendering markaby/broken
1448
+ SQL (0.2ms)  SELECT name
1449
+ FROM sqlite_master
1450
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1451
+ 
1452
+ SQL (0.2ms) select sqlite_version(*)
1453
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1454
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1455
+ SQL (0.2ms)  SELECT name
1456
+ FROM sqlite_master
1457
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1458
+ 
1459
+
1460
+
1461
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:31:30) [GET]
1462
+ Completed in 7ms (View: 5, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1463
+
1464
+
1465
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:31:30) [GET]
1466
+ Rendering markaby/create
1467
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/create]
1468
+
1469
+
1470
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:31:30) [GET]
1471
+ Rendering markaby/index
1472
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby]
1473
+
1474
+
1475
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:31:30) [GET]
1476
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1477
+
1478
+
1479
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:31:30) [GET]
1480
+ Rendering markaby/multiple_forms
1481
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1482
+
1483
+
1484
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:31:30) [GET]
1485
+ Rendered markaby/_monkeys (2.0ms)
1486
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1487
+
1488
+
1489
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:31:30) [GET]
1490
+
1491
+
1492
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:31:30) [GET]
1493
+ Rendering markaby/broken
1494
+ SQL (0.2ms)  SELECT name
1495
+ FROM sqlite_master
1496
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1497
+ 
1498
+ SQL (0.1ms) select sqlite_version(*)
1499
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1500
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1501
+ SQL (0.1ms)  SELECT name
1502
+ FROM sqlite_master
1503
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1504
+ 
1505
+
1506
+
1507
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:31:37) [GET]
1508
+ Completed in 6ms (View: 5, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1509
+
1510
+
1511
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:31:37) [GET]
1512
+ Rendering markaby/create
1513
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
1514
+
1515
+
1516
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:31:37) [GET]
1517
+ Rendering markaby/index
1518
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
1519
+
1520
+
1521
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:31:37) [GET]
1522
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1523
+
1524
+
1525
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:31:37) [GET]
1526
+ Rendering markaby/multiple_forms
1527
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1528
+
1529
+
1530
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:31:37) [GET]
1531
+ Rendered markaby/_monkeys (1.8ms)
1532
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1533
+
1534
+
1535
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:31:37) [GET]
1536
+
1537
+
1538
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:31:37) [GET]
1539
+ Rendering markaby/broken
1540
+ SQL (0.2ms)  SELECT name
1541
+ FROM sqlite_master
1542
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1543
+ 
1544
+ SQL (0.2ms) select sqlite_version(*)
1545
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1546
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1547
+ SQL (0.2ms)  SELECT name
1548
+ FROM sqlite_master
1549
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1550
+ 
1551
+
1552
+
1553
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:35:50) [GET]
1554
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1555
+
1556
+
1557
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:35:50) [GET]
1558
+ Rendering markaby/create
1559
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
1560
+
1561
+
1562
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:35:50) [GET]
1563
+ Rendering markaby/index
1564
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
1565
+
1566
+
1567
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:35:50) [GET]
1568
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1569
+
1570
+
1571
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:35:50) [GET]
1572
+ Rendering markaby/multiple_forms
1573
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1574
+
1575
+
1576
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:35:50) [GET]
1577
+ Rendered markaby/_monkeys (2.5ms)
1578
+ Completed in 6ms (View: 6, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1579
+
1580
+
1581
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:35:50) [GET]
1582
+
1583
+
1584
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:35:50) [GET]
1585
+ Rendering markaby/broken
1586
+ SQL (0.2ms)  SELECT name
1587
+ FROM sqlite_master
1588
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1589
+ 
1590
+ SQL (0.2ms) select sqlite_version(*)
1591
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1592
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1593
+ SQL (0.1ms)  SELECT name
1594
+ FROM sqlite_master
1595
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1596
+ 
1597
+
1598
+
1599
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:45:13) [GET]
1600
+ Completed in 7ms (View: 5, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1601
+
1602
+
1603
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:45:13) [GET]
1604
+ Rendering markaby/create
1605
+ Completed in 53ms (View: 53, DB: 0) | 200 OK [http://test.host/markaby/create]
1606
+
1607
+
1608
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:45:13) [GET]
1609
+ Rendering markaby/index
1610
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby]
1611
+
1612
+
1613
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:45:13) [GET]
1614
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1615
+
1616
+
1617
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:45:13) [GET]
1618
+ Rendering markaby/multiple_forms
1619
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1620
+
1621
+
1622
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:45:13) [GET]
1623
+ Rendered markaby/_monkeys (2.9ms)
1624
+ Completed in 6ms (View: 6, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1625
+
1626
+
1627
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:45:13) [GET]
1628
+
1629
+
1630
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:45:13) [GET]
1631
+ Rendering markaby/broken
1632
+ SQL (0.2ms)  SELECT name
1633
+ FROM sqlite_master
1634
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1635
+ 
1636
+ SQL (0.2ms) select sqlite_version(*)
1637
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1638
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1639
+ SQL (0.1ms)  SELECT name
1640
+ FROM sqlite_master
1641
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1642
+ 
1643
+
1644
+
1645
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:45:21) [GET]
1646
+ Completed in 6ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1647
+
1648
+
1649
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:45:21) [GET]
1650
+ Rendering markaby/create
1651
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/create]
1652
+
1653
+
1654
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:45:21) [GET]
1655
+ Rendering markaby/index
1656
+ Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby]
1657
+
1658
+
1659
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:45:21) [GET]
1660
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1661
+
1662
+
1663
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:45:21) [GET]
1664
+ Rendering markaby/multiple_forms
1665
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1666
+
1667
+
1668
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:45:21) [GET]
1669
+ Rendered markaby/_monkeys (2.0ms)
1670
+ Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1671
+
1672
+
1673
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:45:21) [GET]
1674
+
1675
+
1676
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:45:21) [GET]
1677
+ Rendering markaby/broken
1678
+ SQL (0.2ms)  SELECT name
1679
+ FROM sqlite_master
1680
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1681
+ 
1682
+ SQL (0.2ms) select sqlite_version(*)
1683
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1684
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1685
+ SQL (0.2ms)  SELECT name
1686
+ FROM sqlite_master
1687
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1688
+ 
1689
+
1690
+
1691
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:45:42) [GET]
1692
+ Completed in 6ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1693
+
1694
+
1695
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:45:42) [GET]
1696
+ Rendering markaby/create
1697
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
1698
+
1699
+
1700
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:45:42) [GET]
1701
+ Rendering markaby/index
1702
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
1703
+
1704
+
1705
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:45:42) [GET]
1706
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1707
+
1708
+
1709
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:45:42) [GET]
1710
+ Rendering markaby/multiple_forms
1711
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1712
+
1713
+
1714
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:45:42) [GET]
1715
+ Rendered markaby/_monkeys (1.8ms)
1716
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1717
+
1718
+
1719
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:45:42) [GET]
1720
+
1721
+
1722
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:45:42) [GET]
1723
+ Rendering markaby/broken
1724
+ SQL (0.2ms)  SELECT name
1725
+ FROM sqlite_master
1726
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1727
+ 
1728
+ SQL (0.1ms) select sqlite_version(*)
1729
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1730
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1731
+ SQL (0.1ms)  SELECT name
1732
+ FROM sqlite_master
1733
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1734
+ 
1735
+
1736
+
1737
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:46:20) [GET]
1738
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1739
+
1740
+
1741
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:46:20) [GET]
1742
+ Rendering markaby/create
1743
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
1744
+
1745
+
1746
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:46:20) [GET]
1747
+ Rendering markaby/index
1748
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby]
1749
+
1750
+
1751
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:46:20) [GET]
1752
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1753
+
1754
+
1755
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:46:20) [GET]
1756
+ Rendering markaby/multiple_forms
1757
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1758
+
1759
+
1760
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:46:20) [GET]
1761
+ Rendered markaby/_monkeys (1.9ms)
1762
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1763
+
1764
+
1765
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:46:20) [GET]
1766
+
1767
+
1768
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:46:20) [GET]
1769
+ Rendering markaby/broken
1770
+ SQL (0.2ms)  SELECT name
1771
+ FROM sqlite_master
1772
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1773
+ 
1774
+ SQL (0.1ms) select sqlite_version(*)
1775
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1776
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1777
+ SQL (0.1ms)  SELECT name
1778
+ FROM sqlite_master
1779
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1780
+ 
1781
+
1782
+
1783
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:46:32) [GET]
1784
+ Completed in 6ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1785
+
1786
+
1787
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:46:32) [GET]
1788
+ Rendering markaby/create
1789
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
1790
+
1791
+
1792
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:46:32) [GET]
1793
+ Rendering markaby/index
1794
+ Completed in 4ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
1795
+
1796
+
1797
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:46:32) [GET]
1798
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1799
+
1800
+
1801
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:46:32) [GET]
1802
+ Rendering markaby/multiple_forms
1803
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1804
+
1805
+
1806
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:46:33) [GET]
1807
+ Rendered markaby/_monkeys (2.3ms)
1808
+ Completed in 7ms (View: 7, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1809
+
1810
+
1811
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:46:33) [GET]
1812
+
1813
+
1814
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:46:33) [GET]
1815
+ Rendering markaby/broken
1816
+ SQL (0.2ms)  SELECT name
1817
+ FROM sqlite_master
1818
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1819
+ 
1820
+ SQL (0.1ms) select sqlite_version(*)
1821
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1822
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1823
+ SQL (0.1ms)  SELECT name
1824
+ FROM sqlite_master
1825
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1826
+ 
1827
+ SQL (0.2ms)  SELECT name
1828
+ FROM sqlite_master
1829
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1830
+ 
1831
+ SQL (0.1ms) select sqlite_version(*)
1832
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1833
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1834
+ SQL (0.1ms)  SELECT name
1835
+ FROM sqlite_master
1836
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1837
+ 
1838
+
1839
+
1840
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:47:24) [GET]
1841
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1842
+
1843
+
1844
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:47:24) [GET]
1845
+ Rendering markaby/create
1846
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
1847
+
1848
+
1849
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:47:24) [GET]
1850
+ Rendering markaby/index
1851
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
1852
+
1853
+
1854
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:47:24) [GET]
1855
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1856
+
1857
+
1858
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:47:24) [GET]
1859
+ Rendering markaby/multiple_forms
1860
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1861
+
1862
+
1863
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:47:24) [GET]
1864
+ Rendered markaby/_monkeys (1.8ms)
1865
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1866
+
1867
+
1868
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:47:24) [GET]
1869
+
1870
+
1871
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:47:24) [GET]
1872
+ Rendering markaby/broken
1873
+ SQL (0.2ms)  SELECT name
1874
+ FROM sqlite_master
1875
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1876
+ 
1877
+ SQL (0.1ms) select sqlite_version(*)
1878
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1879
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1880
+ SQL (0.1ms)  SELECT name
1881
+ FROM sqlite_master
1882
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1883
+ 
1884
+
1885
+
1886
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:47:49) [GET]
1887
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1888
+
1889
+
1890
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:47:49) [GET]
1891
+ Rendering markaby/create
1892
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
1893
+
1894
+
1895
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:47:49) [GET]
1896
+ Rendering markaby/index
1897
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
1898
+
1899
+
1900
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:47:49) [GET]
1901
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1902
+
1903
+
1904
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:47:49) [GET]
1905
+ Rendering markaby/multiple_forms
1906
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1907
+
1908
+
1909
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:47:49) [GET]
1910
+ Rendered markaby/_monkeys (2.3ms)
1911
+ Completed in 6ms (View: 6, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1912
+
1913
+
1914
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:47:49) [GET]
1915
+
1916
+
1917
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:47:49) [GET]
1918
+ Rendering markaby/broken
1919
+ SQL (0.2ms)  SELECT name
1920
+ FROM sqlite_master
1921
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1922
+ 
1923
+ SQL (0.2ms) select sqlite_version(*)
1924
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1925
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1926
+ SQL (0.2ms)  SELECT name
1927
+ FROM sqlite_master
1928
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1929
+ 
1930
+
1931
+
1932
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:48:53) [GET]
1933
+ Completed in 6ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1934
+
1935
+
1936
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:48:53) [GET]
1937
+ Rendering markaby/create
1938
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
1939
+
1940
+
1941
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:48:53) [GET]
1942
+ Rendering markaby/index
1943
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby]
1944
+
1945
+
1946
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:48:53) [GET]
1947
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1948
+
1949
+
1950
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:48:53) [GET]
1951
+ Rendering markaby/multiple_forms
1952
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1953
+
1954
+
1955
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:48:53) [GET]
1956
+ Rendered markaby/_monkeys (1.8ms)
1957
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
1958
+
1959
+
1960
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:48:53) [GET]
1961
+
1962
+
1963
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:48:53) [GET]
1964
+ Rendering markaby/broken
1965
+ SQL (0.2ms)  SELECT name
1966
+ FROM sqlite_master
1967
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1968
+ 
1969
+ SQL (0.1ms) select sqlite_version(*)
1970
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1971
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1972
+ SQL (0.1ms)  SELECT name
1973
+ FROM sqlite_master
1974
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1975
+ 
1976
+
1977
+
1978
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:49:05) [GET]
1979
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
1980
+
1981
+
1982
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:49:05) [GET]
1983
+ Rendering markaby/create
1984
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
1985
+
1986
+
1987
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:49:05) [GET]
1988
+ Rendering markaby/index
1989
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
1990
+
1991
+
1992
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:49:05) [GET]
1993
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
1994
+
1995
+
1996
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:49:05) [GET]
1997
+ Rendering markaby/multiple_forms
1998
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
1999
+
2000
+
2001
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:49:05) [GET]
2002
+ Rendered markaby/_monkeys (2.4ms)
2003
+ Completed in 6ms (View: 6, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2004
+
2005
+
2006
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:49:05) [GET]
2007
+
2008
+
2009
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:49:05) [GET]
2010
+ Rendering markaby/broken
2011
+ SQL (0.2ms)  SELECT name
2012
+ FROM sqlite_master
2013
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2014
+ 
2015
+ SQL (0.1ms) select sqlite_version(*)
2016
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2017
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2018
+ SQL (0.1ms)  SELECT name
2019
+ FROM sqlite_master
2020
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2021
+ 
2022
+
2023
+
2024
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:49:12) [GET]
2025
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
2026
+
2027
+
2028
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:49:12) [GET]
2029
+ Rendering markaby/create
2030
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
2031
+
2032
+
2033
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:49:12) [GET]
2034
+ Rendering markaby/index
2035
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
2036
+
2037
+
2038
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:49:12) [GET]
2039
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2040
+
2041
+
2042
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:49:12) [GET]
2043
+ Rendering markaby/multiple_forms
2044
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2045
+
2046
+
2047
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:49:12) [GET]
2048
+ Rendered markaby/_monkeys (2.5ms)
2049
+ Completed in 6ms (View: 6, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2050
+
2051
+
2052
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:49:12) [GET]
2053
+
2054
+
2055
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:49:12) [GET]
2056
+ Rendering markaby/broken
2057
+ SQL (0.2ms)  SELECT name
2058
+ FROM sqlite_master
2059
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2060
+ 
2061
+ SQL (0.1ms) select sqlite_version(*)
2062
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2063
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2064
+ SQL (0.1ms)  SELECT name
2065
+ FROM sqlite_master
2066
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2067
+ 
2068
+ SQL (0.2ms)  SELECT name
2069
+ FROM sqlite_master
2070
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2071
+ 
2072
+ SQL (0.1ms) select sqlite_version(*)
2073
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2074
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2075
+ SQL (0.1ms)  SELECT name
2076
+ FROM sqlite_master
2077
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2078
+ 
2079
+
2080
+
2081
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:49:40) [GET]
2082
+ Completed in 6ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
2083
+
2084
+
2085
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:49:40) [GET]
2086
+ Rendering markaby/create
2087
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
2088
+
2089
+
2090
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:49:40) [GET]
2091
+ Rendering markaby/index
2092
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
2093
+
2094
+
2095
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:49:40) [GET]
2096
+
2097
+
2098
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:49:40) [GET]
2099
+ Rendering markaby/multiple_forms
2100
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2101
+
2102
+
2103
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:49:40) [GET]
2104
+ Rendered markaby/_monkeys (1.9ms)
2105
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2106
+
2107
+
2108
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:49:40) [GET]
2109
+
2110
+
2111
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:49:40) [GET]
2112
+ Rendering markaby/broken
2113
+ SQL (0.2ms)  SELECT name
2114
+ FROM sqlite_master
2115
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2116
+ 
2117
+ SQL (0.1ms) select sqlite_version(*)
2118
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2119
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2120
+ SQL (0.1ms)  SELECT name
2121
+ FROM sqlite_master
2122
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2123
+ 
2124
+ SQL (0.2ms)  SELECT name
2125
+ FROM sqlite_master
2126
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2127
+ 
2128
+ SQL (0.1ms) select sqlite_version(*)
2129
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2130
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2131
+ SQL (0.1ms)  SELECT name
2132
+ FROM sqlite_master
2133
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2134
+ 
2135
+ SQL (0.2ms)  SELECT name
2136
+ FROM sqlite_master
2137
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2138
+ 
2139
+ SQL (0.1ms) select sqlite_version(*)
2140
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2141
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2142
+ SQL (0.1ms)  SELECT name
2143
+ FROM sqlite_master
2144
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2145
+ 
2146
+
2147
+
2148
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:51:34) [GET]
2149
+
2150
+
2151
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:51:34) [GET]
2152
+ Rendering markaby/create
2153
+ Completed in 10ms (View: 10, DB: 1) | 200 OK [http://test.host/markaby/create]
2154
+
2155
+
2156
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:51:34) [GET]
2157
+ Rendering markaby/index
2158
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
2159
+
2160
+
2161
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:51:34) [GET]
2162
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2163
+
2164
+
2165
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:51:34) [GET]
2166
+ Rendering markaby/multiple_forms
2167
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2168
+
2169
+
2170
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:51:34) [GET]
2171
+ Rendered markaby/_monkeys (1.9ms)
2172
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2173
+
2174
+
2175
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:51:34) [GET]
2176
+
2177
+
2178
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:51:34) [GET]
2179
+ Rendering markaby/broken
2180
+ SQL (0.2ms)  SELECT name
2181
+ FROM sqlite_master
2182
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2183
+ 
2184
+ SQL (0.1ms) select sqlite_version(*)
2185
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2186
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2187
+ SQL (0.1ms)  SELECT name
2188
+ FROM sqlite_master
2189
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2190
+ 
2191
+
2192
+
2193
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:51:49) [GET]
2194
+
2195
+
2196
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:51:49) [GET]
2197
+ Rendering markaby/create
2198
+ Completed in 10ms (View: 10, DB: 1) | 200 OK [http://test.host/markaby/create]
2199
+
2200
+
2201
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:51:49) [GET]
2202
+ Rendering markaby/index
2203
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby]
2204
+
2205
+
2206
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:51:49) [GET]
2207
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2208
+
2209
+
2210
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:51:49) [GET]
2211
+ Rendering markaby/multiple_forms
2212
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2213
+
2214
+
2215
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:51:49) [GET]
2216
+ Rendered markaby/_monkeys (1.9ms)
2217
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2218
+
2219
+
2220
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:51:49) [GET]
2221
+
2222
+
2223
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:51:49) [GET]
2224
+ Rendering markaby/broken
2225
+ SQL (0.2ms)  SELECT name
2226
+ FROM sqlite_master
2227
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2228
+ 
2229
+ SQL (0.1ms) select sqlite_version(*)
2230
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2231
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2232
+ SQL (0.1ms)  SELECT name
2233
+ FROM sqlite_master
2234
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2235
+ 
2236
+
2237
+
2238
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:55:07) [GET]
2239
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
2240
+
2241
+
2242
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:55:07) [GET]
2243
+ Rendering markaby/create
2244
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
2245
+
2246
+
2247
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:55:07) [GET]
2248
+ Rendering markaby/index
2249
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
2250
+
2251
+
2252
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:55:07) [GET]
2253
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2254
+
2255
+
2256
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:55:07) [GET]
2257
+ Rendering markaby/multiple_forms
2258
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2259
+
2260
+
2261
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:55:07) [GET]
2262
+ Rendered markaby/_monkeys (1.9ms)
2263
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2264
+
2265
+
2266
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:55:07) [GET]
2267
+
2268
+
2269
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:55:07) [GET]
2270
+ Rendering markaby/broken
2271
+ SQL (0.2ms)  SELECT name
2272
+ FROM sqlite_master
2273
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2274
+ 
2275
+ SQL (0.1ms) select sqlite_version(*)
2276
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2277
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2278
+ SQL (0.1ms)  SELECT name
2279
+ FROM sqlite_master
2280
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2281
+ 
2282
+
2283
+
2284
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:55:37) [GET]
2285
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
2286
+
2287
+
2288
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:55:37) [GET]
2289
+ Rendering markaby/create
2290
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
2291
+
2292
+
2293
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:55:37) [GET]
2294
+ Rendering markaby/index
2295
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby]
2296
+
2297
+
2298
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:55:37) [GET]
2299
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2300
+
2301
+
2302
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:55:37) [GET]
2303
+ Rendering markaby/multiple_forms
2304
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2305
+
2306
+
2307
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:55:37) [GET]
2308
+ Rendered markaby/_monkeys (1.8ms)
2309
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2310
+
2311
+
2312
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:55:37) [GET]
2313
+
2314
+
2315
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:55:37) [GET]
2316
+ Rendering markaby/broken
2317
+ SQL (0.2ms)  SELECT name
2318
+ FROM sqlite_master
2319
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2320
+ 
2321
+ SQL (0.1ms) select sqlite_version(*)
2322
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2323
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2324
+ SQL (0.1ms)  SELECT name
2325
+ FROM sqlite_master
2326
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2327
+ 
2328
+
2329
+
2330
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:56:25) [GET]
2331
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
2332
+
2333
+
2334
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:56:25) [GET]
2335
+ Rendering markaby/create
2336
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
2337
+
2338
+
2339
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:56:25) [GET]
2340
+ Rendering markaby/index
2341
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby]
2342
+
2343
+
2344
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:56:25) [GET]
2345
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2346
+
2347
+
2348
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:56:25) [GET]
2349
+ Rendering markaby/multiple_forms
2350
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2351
+
2352
+
2353
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:56:25) [GET]
2354
+ Rendered markaby/_monkeys (1.9ms)
2355
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2356
+
2357
+
2358
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:56:25) [GET]
2359
+
2360
+
2361
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:56:25) [GET]
2362
+ Rendering markaby/broken
2363
+ SQL (0.2ms)  SELECT name
2364
+ FROM sqlite_master
2365
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2366
+ 
2367
+ SQL (0.1ms) select sqlite_version(*)
2368
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2369
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2370
+ SQL (0.1ms)  SELECT name
2371
+ FROM sqlite_master
2372
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2373
+ 
2374
+
2375
+
2376
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:58:01) [GET]
2377
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
2378
+
2379
+
2380
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:58:01) [GET]
2381
+ Rendering markaby/create
2382
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
2383
+
2384
+
2385
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:58:01) [GET]
2386
+ Rendering markaby/index
2387
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
2388
+
2389
+
2390
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:58:01) [GET]
2391
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2392
+
2393
+
2394
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:58:01) [GET]
2395
+ Rendering markaby/multiple_forms
2396
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2397
+
2398
+
2399
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:58:01) [GET]
2400
+ Rendered markaby/_monkeys (1.9ms)
2401
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2402
+
2403
+
2404
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:58:01) [GET]
2405
+
2406
+
2407
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:58:01) [GET]
2408
+ Rendering markaby/broken
2409
+ SQL (0.2ms)  SELECT name
2410
+ FROM sqlite_master
2411
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2412
+ 
2413
+ SQL (0.1ms) select sqlite_version(*)
2414
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2415
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2416
+ SQL (0.1ms)  SELECT name
2417
+ FROM sqlite_master
2418
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2419
+ 
2420
+
2421
+
2422
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:59:00) [GET]
2423
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
2424
+
2425
+
2426
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:59:00) [GET]
2427
+ Rendering markaby/create
2428
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
2429
+
2430
+
2431
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:59:00) [GET]
2432
+ Rendering markaby/index
2433
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
2434
+
2435
+
2436
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:59:00) [GET]
2437
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2438
+
2439
+
2440
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:59:00) [GET]
2441
+ Rendering markaby/multiple_forms
2442
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2443
+
2444
+
2445
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:59:00) [GET]
2446
+ Rendered markaby/_monkeys (1.9ms)
2447
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2448
+
2449
+
2450
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:59:00) [GET]
2451
+
2452
+
2453
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:59:00) [GET]
2454
+ Rendering markaby/broken
2455
+ SQL (0.2ms)  SELECT name
2456
+ FROM sqlite_master
2457
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2458
+ 
2459
+ SQL (0.1ms) select sqlite_version(*)
2460
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2461
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2462
+ SQL (0.1ms)  SELECT name
2463
+ FROM sqlite_master
2464
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2465
+ 
2466
+
2467
+
2468
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 13:59:55) [GET]
2469
+ Completed in 6ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
2470
+
2471
+
2472
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 13:59:55) [GET]
2473
+ Rendering markaby/create
2474
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
2475
+
2476
+
2477
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 13:59:55) [GET]
2478
+ Rendering markaby/index
2479
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
2480
+
2481
+
2482
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 13:59:55) [GET]
2483
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2484
+
2485
+
2486
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 13:59:55) [GET]
2487
+ Rendering markaby/multiple_forms
2488
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2489
+
2490
+
2491
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 13:59:55) [GET]
2492
+ Rendered markaby/_monkeys (1.9ms)
2493
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2494
+
2495
+
2496
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 13:59:55) [GET]
2497
+
2498
+
2499
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 13:59:55) [GET]
2500
+ Rendering markaby/broken
2501
+ SQL (0.2ms)  SELECT name
2502
+ FROM sqlite_master
2503
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2504
+ 
2505
+ SQL (0.1ms) select sqlite_version(*)
2506
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2507
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2508
+ SQL (0.2ms)  SELECT name
2509
+ FROM sqlite_master
2510
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2511
+ 
2512
+
2513
+
2514
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:00:11) [GET]
2515
+ Completed in 5ms (View: 3, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
2516
+
2517
+
2518
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:00:11) [GET]
2519
+ Rendering markaby/create
2520
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
2521
+
2522
+
2523
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:00:11) [GET]
2524
+ Rendering markaby/index
2525
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
2526
+
2527
+
2528
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:00:11) [GET]
2529
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2530
+
2531
+
2532
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:00:11) [GET]
2533
+ Rendering markaby/multiple_forms
2534
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2535
+
2536
+
2537
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:00:11) [GET]
2538
+ Rendered markaby/_monkeys (1.9ms)
2539
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2540
+
2541
+
2542
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 14:00:11) [GET]
2543
+
2544
+
2545
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:00:11) [GET]
2546
+ Rendering markaby/broken
2547
+ SQL (0.2ms)  SELECT name
2548
+ FROM sqlite_master
2549
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2550
+ 
2551
+ SQL (0.2ms) select sqlite_version(*)
2552
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2553
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2554
+ SQL (0.1ms)  SELECT name
2555
+ FROM sqlite_master
2556
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2557
+ 
2558
+
2559
+
2560
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:16:51) [GET]
2561
+ Completed in 7ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
2562
+
2563
+
2564
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:16:51) [GET]
2565
+ Rendering markaby/create
2566
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/create]
2567
+
2568
+
2569
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:16:51) [GET]
2570
+ Rendering markaby/index
2571
+ Completed in 49ms (View: 49, DB: 0) | 200 OK [http://test.host/markaby]
2572
+
2573
+
2574
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:16:51) [GET]
2575
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2576
+
2577
+
2578
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:16:51) [GET]
2579
+ Rendering markaby/multiple_forms
2580
+ Completed in 4ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2581
+
2582
+
2583
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:16:51) [GET]
2584
+ Rendered markaby/_monkeys (1.8ms)
2585
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2586
+
2587
+
2588
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 14:16:51) [GET]
2589
+
2590
+
2591
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:16:51) [GET]
2592
+ Rendering markaby/broken
2593
+ SQL (0.3ms)  SELECT name
2594
+ FROM sqlite_master
2595
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2596
+ 
2597
+ SQL (0.3ms) select sqlite_version(*)
2598
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2599
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2600
+ SQL (0.2ms)  SELECT name
2601
+ FROM sqlite_master
2602
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2603
+ 
2604
+
2605
+
2606
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:26:48) [GET]
2607
+ Completed in 6ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
2608
+
2609
+
2610
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:26:48) [GET]
2611
+ Rendering markaby/create
2612
+ Completed in 4ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
2613
+
2614
+
2615
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:26:48) [GET]
2616
+ Rendering markaby/index
2617
+ Completed in 53ms (View: 53, DB: 0) | 200 OK [http://test.host/markaby]
2618
+
2619
+
2620
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:26:49) [GET]
2621
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2622
+
2623
+
2624
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:26:49) [GET]
2625
+ Rendering markaby/multiple_forms
2626
+ Completed in 4ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2627
+
2628
+
2629
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:26:49) [GET]
2630
+ Rendered markaby/_monkeys (1.3ms)
2631
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2632
+
2633
+
2634
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 14:26:49) [GET]
2635
+
2636
+
2637
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:26:49) [GET]
2638
+ Rendering markaby/broken
2639
+ SQL (0.2ms)  SELECT name
2640
+ FROM sqlite_master
2641
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2642
+ 
2643
+ SQL (0.2ms) select sqlite_version(*)
2644
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2645
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2646
+ SQL (0.2ms)  SELECT name
2647
+ FROM sqlite_master
2648
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2649
+ 
2650
+
2651
+
2652
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:27:07) [GET]
2653
+ Completed in 5ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
2654
+
2655
+
2656
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:27:07) [GET]
2657
+ Rendering markaby/create
2658
+ Completed in 4ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
2659
+
2660
+
2661
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:27:07) [GET]
2662
+ Rendering markaby/index
2663
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby]
2664
+
2665
+
2666
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:27:07) [GET]
2667
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2668
+
2669
+
2670
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:27:07) [GET]
2671
+ Rendering markaby/multiple_forms
2672
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2673
+
2674
+
2675
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:27:07) [GET]
2676
+ Rendered markaby/_monkeys (1.1ms)
2677
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2678
+
2679
+
2680
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 14:27:07) [GET]
2681
+
2682
+
2683
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:27:07) [GET]
2684
+ Rendering markaby/broken
2685
+ SQL (0.2ms)  SELECT name
2686
+ FROM sqlite_master
2687
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2688
+ 
2689
+ SQL (0.1ms) select sqlite_version(*)
2690
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2691
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2692
+ SQL (0.1ms)  SELECT name
2693
+ FROM sqlite_master
2694
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2695
+ 
2696
+
2697
+
2698
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:27:27) [GET]
2699
+ Completed in 5ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
2700
+
2701
+
2702
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:27:27) [GET]
2703
+ Rendering markaby/create
2704
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
2705
+
2706
+
2707
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:27:27) [GET]
2708
+ Rendering markaby/index
2709
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
2710
+
2711
+
2712
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:27:27) [GET]
2713
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2714
+
2715
+
2716
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:27:27) [GET]
2717
+ Rendering markaby/multiple_forms
2718
+ Completed in 4ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2719
+
2720
+
2721
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:27:27) [GET]
2722
+ Rendered markaby/_monkeys (1.1ms)
2723
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2724
+
2725
+
2726
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 14:27:27) [GET]
2727
+
2728
+
2729
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:27:27) [GET]
2730
+ Rendering markaby/broken
2731
+ SQL (0.2ms)  SELECT name
2732
+ FROM sqlite_master
2733
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2734
+ 
2735
+ SQL (0.1ms) select sqlite_version(*)
2736
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2737
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2738
+ SQL (0.1ms)  SELECT name
2739
+ FROM sqlite_master
2740
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2741
+ 
2742
+
2743
+
2744
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:27:47) [GET]
2745
+ Completed in 5ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
2746
+
2747
+
2748
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:27:47) [GET]
2749
+ Rendering markaby/create
2750
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
2751
+
2752
+
2753
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:27:47) [GET]
2754
+ Rendering markaby/index
2755
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
2756
+
2757
+
2758
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:27:47) [GET]
2759
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2760
+
2761
+
2762
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:27:47) [GET]
2763
+ Rendering markaby/multiple_forms
2764
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2765
+
2766
+
2767
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:27:47) [GET]
2768
+ Rendered markaby/_monkeys (1.3ms)
2769
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2770
+
2771
+
2772
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 14:27:47) [GET]
2773
+
2774
+
2775
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:27:47) [GET]
2776
+ Rendering markaby/broken
2777
+ SQL (0.2ms)  SELECT name
2778
+ FROM sqlite_master
2779
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2780
+ 
2781
+ SQL (0.1ms) select sqlite_version(*)
2782
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2783
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2784
+ SQL (0.1ms)  SELECT name
2785
+ FROM sqlite_master
2786
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2787
+ 
2788
+
2789
+
2790
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:28:28) [GET]
2791
+ Completed in 5ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
2792
+
2793
+
2794
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:28:28) [GET]
2795
+ Rendering markaby/create
2796
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
2797
+
2798
+
2799
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:28:28) [GET]
2800
+ Rendering markaby/index
2801
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
2802
+
2803
+
2804
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:28:28) [GET]
2805
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2806
+
2807
+
2808
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:28:28) [GET]
2809
+ Rendering markaby/multiple_forms
2810
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2811
+
2812
+
2813
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:28:28) [GET]
2814
+ Rendered markaby/_monkeys (1.1ms)
2815
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2816
+
2817
+
2818
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 14:28:28) [GET]
2819
+
2820
+
2821
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:28:28) [GET]
2822
+ Rendering markaby/broken
2823
+ SQL (0.2ms)  SELECT name
2824
+ FROM sqlite_master
2825
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2826
+ 
2827
+ SQL (0.1ms) select sqlite_version(*)
2828
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2829
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2830
+ SQL (0.1ms)  SELECT name
2831
+ FROM sqlite_master
2832
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2833
+ 
2834
+
2835
+
2836
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:29:59) [GET]
2837
+ Completed in 5ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
2838
+
2839
+
2840
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:29:59) [GET]
2841
+ Rendering markaby/create
2842
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
2843
+
2844
+
2845
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:29:59) [GET]
2846
+ Rendering markaby/index
2847
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
2848
+
2849
+
2850
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:29:59) [GET]
2851
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2852
+
2853
+
2854
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:29:59) [GET]
2855
+ Rendering markaby/multiple_forms
2856
+ Completed in 4ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2857
+
2858
+
2859
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:29:59) [GET]
2860
+ Rendered markaby/_monkeys (1.1ms)
2861
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2862
+
2863
+
2864
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 14:29:59) [GET]
2865
+
2866
+
2867
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:29:59) [GET]
2868
+ Rendering markaby/broken
2869
+ SQL (0.2ms)  SELECT name
2870
+ FROM sqlite_master
2871
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2872
+ 
2873
+ SQL (0.1ms) select sqlite_version(*)
2874
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2875
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2876
+ SQL (0.1ms)  SELECT name
2877
+ FROM sqlite_master
2878
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2879
+ 
2880
+
2881
+
2882
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:30:37) [GET]
2883
+ Completed in 5ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
2884
+
2885
+
2886
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:30:37) [GET]
2887
+ Rendering markaby/create
2888
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
2889
+
2890
+
2891
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:30:37) [GET]
2892
+ Rendering markaby/index
2893
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
2894
+
2895
+
2896
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:30:37) [GET]
2897
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2898
+
2899
+
2900
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:30:37) [GET]
2901
+ Rendering markaby/multiple_forms
2902
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2903
+
2904
+
2905
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:30:37) [GET]
2906
+ Rendered markaby/_monkeys (1.2ms)
2907
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2908
+
2909
+
2910
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 14:30:37) [GET]
2911
+
2912
+
2913
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:30:38) [GET]
2914
+ Rendering markaby/broken
2915
+ SQL (0.2ms)  SELECT name
2916
+ FROM sqlite_master
2917
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2918
+ 
2919
+ SQL (0.1ms) select sqlite_version(*)
2920
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2921
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2922
+ SQL (0.1ms)  SELECT name
2923
+ FROM sqlite_master
2924
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2925
+ 
2926
+
2927
+
2928
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:32:37) [GET]
2929
+ Completed in 88457ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
2930
+
2931
+
2932
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:34:06) [GET]
2933
+ Rendering markaby/create
2934
+ Completed in 585ms (View: 585, DB: 0) | 200 OK [http://test.host/markaby/create]
2935
+
2936
+
2937
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:34:06) [GET]
2938
+ Rendering markaby/index
2939
+ Completed in 287ms (View: 287, DB: 0) | 200 OK [http://test.host/markaby]
2940
+
2941
+
2942
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:34:07) [GET]
2943
+ Completed in 223ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2944
+
2945
+
2946
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:34:07) [GET]
2947
+ Rendering markaby/multiple_forms
2948
+ Completed in 214ms (View: 214, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2949
+
2950
+
2951
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:34:07) [GET]
2952
+ Rendered markaby/_monkeys (156.1ms)
2953
+ Completed in 204ms (View: 204, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
2954
+
2955
+
2956
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-23 14:34:07) [GET]
2957
+
2958
+
2959
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:34:08) [GET]
2960
+ Rendering markaby/broken
2961
+ SQL (0.2ms)  SELECT name
2962
+ FROM sqlite_master
2963
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2964
+ 
2965
+ SQL (0.2ms) select sqlite_version(*)
2966
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2967
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2968
+ SQL (0.1ms)  SELECT name
2969
+ FROM sqlite_master
2970
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2971
+ 
2972
+
2973
+
2974
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:35:12) [GET]
2975
+ Completed in 6ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
2976
+
2977
+
2978
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:35:12) [GET]
2979
+ Rendering markaby/create
2980
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
2981
+
2982
+
2983
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:35:12) [GET]
2984
+ Rendering markaby/index
2985
+ Completed in 49ms (View: 49, DB: 0) | 200 OK [http://test.host/markaby]
2986
+
2987
+
2988
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:35:12) [GET]
2989
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
2990
+
2991
+
2992
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:35:12) [GET]
2993
+ Rendering markaby/multiple_forms
2994
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
2995
+
2996
+
2997
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:35:12) [GET]
2998
+ Rendered markaby/_monkeys (0.2ms)
2999
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3000
+
3001
+
3002
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:35:12) [GET]
3003
+ Rendering markaby/broken
3004
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/broken]
3005
+ SQL (0.2ms)  SELECT name
3006
+ FROM sqlite_master
3007
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3008
+ 
3009
+ SQL (0.2ms) select sqlite_version(*)
3010
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3011
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3012
+ SQL (0.1ms)  SELECT name
3013
+ FROM sqlite_master
3014
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3015
+ 
3016
+
3017
+
3018
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:35:29) [GET]
3019
+ Completed in 6ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3020
+
3021
+
3022
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:35:29) [GET]
3023
+ Rendering markaby/create
3024
+ Completed in 4ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
3025
+
3026
+
3027
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:35:29) [GET]
3028
+ Rendering markaby/index
3029
+ Completed in 51ms (View: 51, DB: 0) | 200 OK [http://test.host/markaby]
3030
+
3031
+
3032
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:35:29) [GET]
3033
+
3034
+
3035
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:35:29) [GET]
3036
+ Rendering markaby/multiple_forms
3037
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3038
+
3039
+
3040
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:35:29) [GET]
3041
+ Rendered markaby/_monkeys (0.2ms)
3042
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3043
+
3044
+
3045
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:35:29) [GET]
3046
+ Rendering markaby/broken
3047
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/broken]
3048
+ SQL (0.2ms)  SELECT name
3049
+ FROM sqlite_master
3050
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3051
+ 
3052
+ SQL (0.3ms) select sqlite_version(*)
3053
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3054
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3055
+ SQL (0.2ms)  SELECT name
3056
+ FROM sqlite_master
3057
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3058
+ 
3059
+
3060
+
3061
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:38:56) [GET]
3062
+ Completed in 7ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3063
+
3064
+
3065
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:38:56) [GET]
3066
+ Rendering markaby/create
3067
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
3068
+
3069
+
3070
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:38:56) [GET]
3071
+ Rendering markaby/index
3072
+ Completed in 52ms (View: 52, DB: 0) | 200 OK [http://test.host/markaby]
3073
+
3074
+
3075
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:38:56) [GET]
3076
+
3077
+
3078
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:38:56) [GET]
3079
+ Rendering markaby/multiple_forms
3080
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3081
+
3082
+
3083
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:38:56) [GET]
3084
+ Rendered markaby/_monkeys (0.2ms)
3085
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3086
+
3087
+
3088
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:38:56) [GET]
3089
+ Rendering markaby/broken
3090
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/broken]
3091
+ SQL (0.2ms)  SELECT name
3092
+ FROM sqlite_master
3093
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3094
+ 
3095
+ SQL (0.2ms) select sqlite_version(*)
3096
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3097
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3098
+ SQL (0.2ms)  SELECT name
3099
+ FROM sqlite_master
3100
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3101
+ 
3102
+
3103
+
3104
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:39:58) [GET]
3105
+ Completed in 9ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3106
+
3107
+
3108
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:39:58) [GET]
3109
+ Rendering markaby/create
3110
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
3111
+
3112
+
3113
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:39:59) [GET]
3114
+ Rendering markaby/index
3115
+ Completed in 53ms (View: 52, DB: 0) | 200 OK [http://test.host/markaby]
3116
+
3117
+
3118
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:39:59) [GET]
3119
+
3120
+
3121
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:39:59) [GET]
3122
+ Rendering markaby/multiple_forms
3123
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3124
+
3125
+
3126
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:39:59) [GET]
3127
+ Rendered markaby/_monkeys (0.2ms)
3128
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3129
+
3130
+
3131
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:39:59) [GET]
3132
+ Rendering markaby/broken
3133
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/broken]
3134
+ SQL (0.2ms)  SELECT name
3135
+ FROM sqlite_master
3136
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3137
+ 
3138
+ SQL (0.3ms) select sqlite_version(*)
3139
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3140
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3141
+ SQL (0.2ms)  SELECT name
3142
+ FROM sqlite_master
3143
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3144
+ 
3145
+
3146
+
3147
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:41:32) [GET]
3148
+ Completed in 8ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3149
+
3150
+
3151
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:41:32) [GET]
3152
+ Rendering markaby/create
3153
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
3154
+
3155
+
3156
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:41:32) [GET]
3157
+ Rendering markaby/index
3158
+ Completed in 54ms (View: 53, DB: 0) | 200 OK [http://test.host/markaby]
3159
+
3160
+
3161
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:41:32) [GET]
3162
+
3163
+
3164
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:41:32) [GET]
3165
+ Rendering markaby/multiple_forms
3166
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3167
+
3168
+
3169
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:41:32) [GET]
3170
+ Rendered markaby/_monkeys (0.2ms)
3171
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3172
+
3173
+
3174
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:41:32) [GET]
3175
+ Rendering markaby/broken
3176
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/broken]
3177
+ SQL (0.2ms)  SELECT name
3178
+ FROM sqlite_master
3179
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3180
+ 
3181
+ SQL (0.2ms) select sqlite_version(*)
3182
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3183
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3184
+ SQL (0.1ms)  SELECT name
3185
+ FROM sqlite_master
3186
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3187
+ 
3188
+
3189
+
3190
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:45:19) [GET]
3191
+ Completed in 9ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3192
+
3193
+
3194
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:45:19) [GET]
3195
+ Rendering markaby/create
3196
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
3197
+
3198
+
3199
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:45:19) [GET]
3200
+ Rendering markaby/index
3201
+ Completed in 48ms (View: 48, DB: 0) | 200 OK [http://test.host/markaby]
3202
+
3203
+
3204
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:45:19) [GET]
3205
+
3206
+
3207
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:45:19) [GET]
3208
+ Rendering markaby/multiple_forms
3209
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3210
+
3211
+
3212
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:45:19) [GET]
3213
+ Rendered markaby/_monkeys (0.2ms)
3214
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3215
+
3216
+
3217
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:45:19) [GET]
3218
+ Rendering markaby/broken
3219
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/broken]
3220
+ SQL (0.2ms)  SELECT name
3221
+ FROM sqlite_master
3222
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3223
+ 
3224
+ SQL (0.3ms) select sqlite_version(*)
3225
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3226
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3227
+ SQL (0.2ms)  SELECT name
3228
+ FROM sqlite_master
3229
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3230
+ 
3231
+
3232
+
3233
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:47:17) [GET]
3234
+ Completed in 9ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3235
+
3236
+
3237
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:47:17) [GET]
3238
+ Rendering markaby/create
3239
+ Completed in 4ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
3240
+
3241
+
3242
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:47:17) [GET]
3243
+ Rendering markaby/index
3244
+ Completed in 50ms (View: 50, DB: 0) | 200 OK [http://test.host/markaby]
3245
+
3246
+
3247
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:47:17) [GET]
3248
+
3249
+
3250
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:47:17) [GET]
3251
+ Rendering markaby/multiple_forms
3252
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3253
+
3254
+
3255
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:47:17) [GET]
3256
+ Rendered markaby/_monkeys (0.3ms)
3257
+ Completed in 4ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3258
+
3259
+
3260
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:47:17) [GET]
3261
+ Rendering markaby/broken
3262
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/broken]
3263
+ SQL (0.3ms)  SELECT name
3264
+ FROM sqlite_master
3265
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3266
+ 
3267
+ SQL (0.3ms) select sqlite_version(*)
3268
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3269
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3270
+ SQL (0.2ms)  SELECT name
3271
+ FROM sqlite_master
3272
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3273
+ 
3274
+
3275
+
3276
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:47:59) [GET]
3277
+ Completed in 9ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3278
+
3279
+
3280
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:47:59) [GET]
3281
+ Rendering markaby/create
3282
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
3283
+
3284
+
3285
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:47:59) [GET]
3286
+ Rendering markaby/index
3287
+ Completed in 52ms (View: 52, DB: 0) | 200 OK [http://test.host/markaby]
3288
+
3289
+
3290
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:47:59) [GET]
3291
+
3292
+
3293
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:47:59) [GET]
3294
+ Rendering markaby/multiple_forms
3295
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3296
+
3297
+
3298
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:47:59) [GET]
3299
+ Rendered markaby/_monkeys (0.2ms)
3300
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3301
+
3302
+
3303
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:47:59) [GET]
3304
+ Rendering markaby/broken
3305
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/broken]
3306
+ SQL (0.2ms)  SELECT name
3307
+ FROM sqlite_master
3308
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3309
+ 
3310
+ SQL (0.1ms) select sqlite_version(*)
3311
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3312
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3313
+ SQL (0.1ms)  SELECT name
3314
+ FROM sqlite_master
3315
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3316
+ 
3317
+
3318
+
3319
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:48:11) [GET]
3320
+ Completed in 5ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3321
+
3322
+
3323
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:48:11) [GET]
3324
+ Rendering markaby/create
3325
+ Completed in 2ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
3326
+
3327
+
3328
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:48:11) [GET]
3329
+ Rendering markaby/index
3330
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
3331
+
3332
+
3333
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:48:11) [GET]
3334
+
3335
+
3336
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:48:11) [GET]
3337
+ Rendering markaby/multiple_forms
3338
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3339
+
3340
+
3341
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:48:11) [GET]
3342
+ Rendered markaby/_monkeys (0.2ms)
3343
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3344
+
3345
+
3346
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:48:11) [GET]
3347
+ Rendering markaby/broken
3348
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/broken]
3349
+ SQL (0.2ms)  SELECT name
3350
+ FROM sqlite_master
3351
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3352
+ 
3353
+ SQL (0.2ms) select sqlite_version(*)
3354
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3355
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3356
+ SQL (0.1ms)  SELECT name
3357
+ FROM sqlite_master
3358
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3359
+ 
3360
+
3361
+
3362
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:49:21) [GET]
3363
+ Completed in 8ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3364
+
3365
+
3366
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:49:21) [GET]
3367
+ Rendering markaby/create
3368
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
3369
+
3370
+
3371
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:49:21) [GET]
3372
+ Rendering markaby/index
3373
+ Completed in 53ms (View: 53, DB: 0) | 200 OK [http://test.host/markaby]
3374
+
3375
+
3376
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:49:21) [GET]
3377
+
3378
+
3379
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:49:21) [GET]
3380
+ Rendering markaby/multiple_forms
3381
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3382
+
3383
+
3384
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:49:21) [GET]
3385
+ Rendered markaby/_monkeys (0.2ms)
3386
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3387
+
3388
+
3389
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:49:21) [GET]
3390
+ Rendering markaby/broken
3391
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/broken]
3392
+ SQL (0.2ms)  SELECT name
3393
+ FROM sqlite_master
3394
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3395
+ 
3396
+ SQL (0.2ms) select sqlite_version(*)
3397
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3398
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3399
+ SQL (0.1ms)  SELECT name
3400
+ FROM sqlite_master
3401
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3402
+ 
3403
+
3404
+
3405
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 14:49:57) [GET]
3406
+ Completed in 8ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3407
+
3408
+
3409
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 14:49:57) [GET]
3410
+ Rendering markaby/create
3411
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
3412
+
3413
+
3414
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 14:49:57) [GET]
3415
+ Rendering markaby/index
3416
+ Completed in 48ms (View: 48, DB: 0) | 200 OK [http://test.host/markaby]
3417
+
3418
+
3419
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 14:49:57) [GET]
3420
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
3421
+
3422
+
3423
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 14:49:57) [GET]
3424
+ Rendering markaby/multiple_forms
3425
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3426
+
3427
+
3428
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 14:49:57) [GET]
3429
+ Rendered markaby/_monkeys (0.2ms)
3430
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3431
+
3432
+
3433
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 14:49:57) [GET]
3434
+ Rendering markaby/broken
3435
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/broken]
3436
+ SQL (0.2ms)  SELECT name
3437
+ FROM sqlite_master
3438
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3439
+ 
3440
+ SQL (0.2ms) select sqlite_version(*)
3441
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3442
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3443
+ SQL (0.1ms)  SELECT name
3444
+ FROM sqlite_master
3445
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3446
+ 
3447
+
3448
+
3449
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 15:17:05) [GET]
3450
+ Completed in 10ms (View: 5, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3451
+
3452
+
3453
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 15:17:05) [GET]
3454
+ Rendering markaby/create
3455
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/create]
3456
+
3457
+
3458
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 15:17:06) [GET]
3459
+ Rendering markaby/index
3460
+ Completed in 49ms (View: 49, DB: 0) | 200 OK [http://test.host/markaby]
3461
+
3462
+
3463
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 15:17:06) [GET]
3464
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
3465
+
3466
+
3467
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 15:17:06) [GET]
3468
+ Rendering markaby/multiple_forms
3469
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3470
+
3471
+
3472
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 15:17:06) [GET]
3473
+ Rendered markaby/_monkeys (0.2ms)
3474
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3475
+
3476
+
3477
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 15:17:06) [GET]
3478
+ Rendering markaby/broken
3479
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/broken]
3480
+ SQL (0.2ms)  SELECT name
3481
+ FROM sqlite_master
3482
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3483
+ 
3484
+ SQL (0.2ms) select sqlite_version(*)
3485
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3486
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3487
+ SQL (0.1ms)  SELECT name
3488
+ FROM sqlite_master
3489
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3490
+ 
3491
+
3492
+
3493
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-23 15:21:53) [GET]
3494
+ Completed in 9ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3495
+
3496
+
3497
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-23 15:21:53) [GET]
3498
+ Rendering markaby/create
3499
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
3500
+
3501
+
3502
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-23 15:21:53) [GET]
3503
+ Rendering markaby/index
3504
+ Completed in 58ms (View: 58, DB: 0) | 200 OK [http://test.host/markaby]
3505
+
3506
+
3507
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-23 15:21:53) [GET]
3508
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
3509
+
3510
+
3511
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-23 15:21:53) [GET]
3512
+ Rendering markaby/multiple_forms
3513
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3514
+
3515
+
3516
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-23 15:21:53) [GET]
3517
+ Rendered markaby/_monkeys (0.3ms)
3518
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3519
+
3520
+
3521
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-23 15:21:53) [GET]
3522
+ Rendering markaby/broken
3523
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/broken]
3524
+ SQL (0.2ms)  SELECT name
3525
+ FROM sqlite_master
3526
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3527
+ 
3528
+ SQL (0.3ms) select sqlite_version(*)
3529
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3530
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3531
+ SQL (0.2ms)  SELECT name
3532
+ FROM sqlite_master
3533
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3534
+ 
3535
+
3536
+
3537
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-24 09:45:54) [GET]
3538
+ Completed in 11ms (View: 7, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3539
+
3540
+
3541
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-24 09:45:54) [GET]
3542
+ Rendering markaby/create
3543
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/create]
3544
+
3545
+
3546
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-24 09:45:54) [GET]
3547
+ Rendering markaby/index
3548
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
3549
+
3550
+
3551
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-24 09:45:54) [GET]
3552
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
3553
+
3554
+
3555
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-24 09:45:54) [GET]
3556
+ Rendering markaby/multiple_forms
3557
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3558
+
3559
+
3560
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-24 09:45:54) [GET]
3561
+ Rendered markaby/_monkeys (0.2ms)
3562
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3563
+
3564
+
3565
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-24 09:45:54) [GET]
3566
+ Rendering markaby/broken
3567
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/broken]
3568
+ SQL (0.2ms)  SELECT name
3569
+ FROM sqlite_master
3570
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3571
+ 
3572
+ SQL (0.2ms) select sqlite_version(*)
3573
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3574
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3575
+ SQL (0.2ms)  SELECT name
3576
+ FROM sqlite_master
3577
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3578
+ 
3579
+
3580
+
3581
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-24 09:46:10) [GET]
3582
+ Completed in 6ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3583
+
3584
+
3585
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-24 09:46:10) [GET]
3586
+ Rendering markaby/create
3587
+ Completed in 2ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
3588
+
3589
+
3590
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-24 09:46:10) [GET]
3591
+ Rendering markaby/index
3592
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
3593
+
3594
+
3595
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-24 09:46:10) [GET]
3596
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
3597
+
3598
+
3599
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-24 09:46:10) [GET]
3600
+ Rendering markaby/multiple_forms
3601
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3602
+
3603
+
3604
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-24 09:46:10) [GET]
3605
+ Rendered markaby/_monkeys (0.2ms)
3606
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3607
+
3608
+
3609
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-24 09:46:10) [GET]
3610
+ Rendering markaby/broken
3611
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/broken]
3612
+ SQL (0.2ms)  SELECT name
3613
+ FROM sqlite_master
3614
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3615
+ 
3616
+ SQL (0.2ms) select sqlite_version(*)
3617
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3618
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3619
+ SQL (0.1ms)  SELECT name
3620
+ FROM sqlite_master
3621
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3622
+ 
3623
+
3624
+
3625
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-24 09:47:16) [GET]
3626
+ Completed in 5ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3627
+
3628
+
3629
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-24 09:47:16) [GET]
3630
+ Rendering markaby/create
3631
+ Completed in 2ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
3632
+
3633
+
3634
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-24 09:47:16) [GET]
3635
+ Rendering markaby/index
3636
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby]
3637
+
3638
+
3639
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-24 09:47:16) [GET]
3640
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
3641
+
3642
+
3643
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-24 09:47:16) [GET]
3644
+ Rendering markaby/multiple_forms
3645
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3646
+
3647
+
3648
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-24 09:47:16) [GET]
3649
+ Rendered markaby/_monkeys (0.2ms)
3650
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3651
+
3652
+
3653
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-24 09:47:16) [GET]
3654
+ Rendering markaby/broken
3655
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/broken]
3656
+ SQL (0.2ms)  SELECT name
3657
+ FROM sqlite_master
3658
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3659
+ 
3660
+ SQL (0.1ms) select sqlite_version(*)
3661
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3662
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3663
+ SQL (0.1ms)  SELECT name
3664
+ FROM sqlite_master
3665
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3666
+ 
3667
+
3668
+
3669
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-24 09:48:42) [GET]
3670
+ Completed in 6ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3671
+
3672
+
3673
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-24 09:48:42) [GET]
3674
+ Rendering markaby/create
3675
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
3676
+
3677
+
3678
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-24 09:48:42) [GET]
3679
+ Rendering markaby/index
3680
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby]
3681
+
3682
+
3683
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-24 09:48:42) [GET]
3684
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
3685
+
3686
+
3687
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-24 09:48:42) [GET]
3688
+ Rendering markaby/multiple_forms
3689
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3690
+
3691
+
3692
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-24 09:48:42) [GET]
3693
+ Rendered markaby/_monkeys (0.2ms)
3694
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3695
+
3696
+
3697
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-24 09:48:42) [GET]
3698
+ Rendering markaby/broken
3699
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/broken]
3700
+ SQL (0.2ms)  SELECT name
3701
+ FROM sqlite_master
3702
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3703
+ 
3704
+ SQL (0.2ms) select sqlite_version(*)
3705
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3706
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3707
+ SQL (0.2ms)  SELECT name
3708
+ FROM sqlite_master
3709
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3710
+ 
3711
+
3712
+
3713
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-24 09:50:10) [GET]
3714
+ Completed in 5ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3715
+
3716
+
3717
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-24 09:50:10) [GET]
3718
+ Rendering markaby/create
3719
+ Completed in 2ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
3720
+
3721
+
3722
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-24 09:50:10) [GET]
3723
+ Rendering markaby/index
3724
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby]
3725
+
3726
+
3727
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-24 09:50:10) [GET]
3728
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
3729
+
3730
+
3731
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-24 09:50:10) [GET]
3732
+ Rendering markaby/multiple_forms
3733
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3734
+
3735
+
3736
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-24 09:50:10) [GET]
3737
+ Rendered markaby/_monkeys (0.2ms)
3738
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3739
+
3740
+
3741
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-24 09:50:10) [GET]
3742
+ Rendering markaby/broken
3743
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/broken]
3744
+ SQL (0.2ms)  SELECT name
3745
+ FROM sqlite_master
3746
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3747
+ 
3748
+ SQL (0.1ms) select sqlite_version(*)
3749
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3750
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3751
+ SQL (0.1ms)  SELECT name
3752
+ FROM sqlite_master
3753
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3754
+ 
3755
+
3756
+
3757
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-24 09:51:51) [GET]
3758
+ Rendering markaby/index
3759
+ Completed in 8ms (View: 6, DB: 1) | 200 OK [http://test.host/markaby]
3760
+ SQL (0.2ms)  SELECT name
3761
+ FROM sqlite_master
3762
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3763
+ 
3764
+ SQL (0.1ms) select sqlite_version(*)
3765
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3766
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3767
+ SQL (0.2ms)  SELECT name
3768
+ FROM sqlite_master
3769
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3770
+ 
3771
+
3772
+
3773
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-24 09:53:44) [GET]
3774
+ Rendering markaby/index
3775
+ Completed in 8ms (View: 6, DB: 1) | 200 OK [http://test.host/markaby]
3776
+ SQL (0.2ms)  SELECT name
3777
+ FROM sqlite_master
3778
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3779
+ 
3780
+ SQL (0.2ms) select sqlite_version(*)
3781
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3782
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3783
+ SQL (0.1ms)  SELECT name
3784
+ FROM sqlite_master
3785
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3786
+ 
3787
+
3788
+
3789
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-24 09:53:56) [GET]
3790
+ Rendering markaby/index
3791
+ Completed in 7ms (View: 5, DB: 1) | 200 OK [http://test.host/markaby]
3792
+ SQL (0.2ms)  SELECT name
3793
+ FROM sqlite_master
3794
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3795
+ 
3796
+ SQL (0.1ms) select sqlite_version(*)
3797
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3798
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3799
+ SQL (0.1ms)  SELECT name
3800
+ FROM sqlite_master
3801
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3802
+ 
3803
+
3804
+
3805
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-24 09:55:33) [GET]
3806
+ Completed in 5ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3807
+
3808
+
3809
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-24 09:55:33) [GET]
3810
+ Rendering markaby/create
3811
+ Completed in 2ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
3812
+
3813
+
3814
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-24 09:55:33) [GET]
3815
+ Rendering markaby/index
3816
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
3817
+
3818
+
3819
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-24 09:55:33) [GET]
3820
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
3821
+
3822
+
3823
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-24 09:55:33) [GET]
3824
+ Rendering markaby/multiple_forms
3825
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3826
+
3827
+
3828
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-24 09:55:33) [GET]
3829
+ Rendered markaby/_monkeys (0.2ms)
3830
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3831
+
3832
+
3833
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-24 09:55:33) [GET]
3834
+ Rendering markaby/broken
3835
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/broken]
3836
+ SQL (0.2ms)  SELECT name
3837
+ FROM sqlite_master
3838
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3839
+ 
3840
+ SQL (0.1ms) select sqlite_version(*)
3841
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3842
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3843
+ SQL (0.1ms)  SELECT name
3844
+ FROM sqlite_master
3845
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3846
+ 
3847
+
3848
+
3849
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-24 09:57:30) [GET]
3850
+ Completed in 7ms (View: 5, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3851
+
3852
+
3853
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-24 09:57:30) [GET]
3854
+ Rendering markaby/create
3855
+ Completed in 2ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
3856
+
3857
+
3858
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-24 09:57:30) [GET]
3859
+ Rendering markaby/index
3860
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby]
3861
+
3862
+
3863
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-24 09:57:30) [GET]
3864
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
3865
+
3866
+
3867
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-24 09:57:30) [GET]
3868
+ Rendering markaby/multiple_forms
3869
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3870
+
3871
+
3872
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-24 09:57:30) [GET]
3873
+ Rendered markaby/_monkeys (0.2ms)
3874
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3875
+
3876
+
3877
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-24 09:57:30) [GET]
3878
+ Rendering markaby/broken
3879
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/broken]
3880
+ SQL (0.2ms)  SELECT name
3881
+ FROM sqlite_master
3882
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3883
+ 
3884
+ SQL (0.1ms) select sqlite_version(*)
3885
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3886
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3887
+ SQL (0.1ms)  SELECT name
3888
+ FROM sqlite_master
3889
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3890
+ 
3891
+
3892
+
3893
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-24 10:00:10) [GET]
3894
+ Completed in 6ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3895
+
3896
+
3897
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-24 10:00:10) [GET]
3898
+ Rendering markaby/create
3899
+ Completed in 2ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
3900
+
3901
+
3902
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-24 10:00:10) [GET]
3903
+ Rendering markaby/index
3904
+ Completed in 2ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby]
3905
+
3906
+
3907
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-24 10:00:10) [GET]
3908
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
3909
+
3910
+
3911
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-24 10:00:10) [GET]
3912
+ Rendering markaby/multiple_forms
3913
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
3914
+
3915
+
3916
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-24 10:00:10) [GET]
3917
+ Rendered markaby/_monkeys (0.2ms)
3918
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
3919
+
3920
+
3921
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-24 10:00:10) [GET]
3922
+ Rendering markaby/broken
3923
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/broken]
3924
+ SQL (0.2ms)  SELECT name
3925
+ FROM sqlite_master
3926
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3927
+ 
3928
+ SQL (0.1ms) select sqlite_version(*)
3929
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3930
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3931
+ SQL (0.1ms)  SELECT name
3932
+ FROM sqlite_master
3933
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3934
+ 
3935
+
3936
+
3937
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-24 10:00:21) [GET]
3938
+ Completed in 5ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3939
+
3940
+
3941
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-24 10:00:21) [GET]
3942
+
3943
+
3944
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-24 10:00:21) [GET]
3945
+
3946
+
3947
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-24 10:00:21) [GET]
3948
+
3949
+
3950
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-24 10:00:21) [GET]
3951
+
3952
+
3953
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-24 10:00:21) [GET]
3954
+
3955
+
3956
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-24 10:00:21) [GET]
3957
+ SQL (0.2ms)  SELECT name
3958
+ FROM sqlite_master
3959
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3960
+ 
3961
+ SQL (0.1ms) select sqlite_version(*)
3962
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3963
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3964
+ SQL (0.1ms)  SELECT name
3965
+ FROM sqlite_master
3966
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3967
+ 
3968
+
3969
+
3970
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-24 10:01:07) [GET]
3971
+ Completed in 5ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
3972
+
3973
+
3974
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-24 10:01:07) [GET]
3975
+
3976
+
3977
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-24 10:01:07) [GET]
3978
+
3979
+
3980
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-24 10:01:07) [GET]
3981
+
3982
+
3983
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-24 10:01:07) [GET]
3984
+
3985
+
3986
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-24 10:01:07) [GET]
3987
+
3988
+
3989
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-24 10:01:07) [GET]
3990
+ SQL (0.2ms)  SELECT name
3991
+ FROM sqlite_master
3992
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3993
+ 
3994
+ SQL (0.1ms) select sqlite_version(*)
3995
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3996
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3997
+ SQL (0.1ms)  SELECT name
3998
+ FROM sqlite_master
3999
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4000
+ 
4001
+
4002
+
4003
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-24 10:01:53) [GET]
4004
+ Completed in 6ms (View: 5, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
4005
+
4006
+
4007
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-24 10:01:53) [GET]
4008
+ Rendering markaby/create
4009
+ Completed in 2ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
4010
+
4011
+
4012
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-24 10:01:53) [GET]
4013
+ Rendering markaby/index
4014
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby]
4015
+
4016
+
4017
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-24 10:01:53) [GET]
4018
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
4019
+
4020
+
4021
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-24 10:01:53) [GET]
4022
+ Rendering markaby/multiple_forms
4023
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
4024
+
4025
+
4026
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-24 10:01:53) [GET]
4027
+ Rendered markaby/_monkeys (0.2ms)
4028
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
4029
+
4030
+
4031
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-24 10:01:53) [GET]
4032
+ Rendering markaby/broken
4033
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/broken]
4034
+ SQL (0.2ms)  SELECT name
4035
+ FROM sqlite_master
4036
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4037
+ 
4038
+ SQL (0.1ms) select sqlite_version(*)
4039
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4040
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4041
+ SQL (0.1ms)  SELECT name
4042
+ FROM sqlite_master
4043
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4044
+ 
4045
+
4046
+
4047
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-24 10:02:28) [GET]
4048
+ Completed in 5ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
4049
+
4050
+
4051
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-24 10:02:28) [GET]
4052
+ Rendering markaby/create
4053
+ Completed in 2ms (View: 2, DB: 0) | 200 OK [http://test.host/markaby/create]
4054
+
4055
+
4056
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-24 10:02:28) [GET]
4057
+ Rendering markaby/index
4058
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
4059
+
4060
+
4061
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-24 10:02:28) [GET]
4062
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
4063
+
4064
+
4065
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-24 10:02:28) [GET]
4066
+ Rendering markaby/multiple_forms
4067
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
4068
+
4069
+
4070
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-24 10:02:28) [GET]
4071
+ Rendered markaby/_monkeys (0.2ms)
4072
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
4073
+
4074
+
4075
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-24 10:02:28) [GET]
4076
+ Rendering markaby/broken
4077
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/broken]
4078
+ SQL (0.2ms)  SELECT name
4079
+ FROM sqlite_master
4080
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4081
+ 
4082
+ SQL (0.1ms) select sqlite_version(*)
4083
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4084
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4085
+ SQL (0.1ms)  SELECT name
4086
+ FROM sqlite_master
4087
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4088
+ 
4089
+
4090
+
4091
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-24 10:03:00) [GET]
4092
+ Completed in 6ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
4093
+
4094
+
4095
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-24 10:03:00) [GET]
4096
+ Rendering markaby/create
4097
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/create]
4098
+
4099
+
4100
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-24 10:03:00) [GET]
4101
+ Rendering markaby/index
4102
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
4103
+
4104
+
4105
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-24 10:03:00) [GET]
4106
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
4107
+
4108
+
4109
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-24 10:03:00) [GET]
4110
+ Rendering markaby/multiple_forms
4111
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
4112
+
4113
+
4114
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-24 10:03:00) [GET]
4115
+ Rendered markaby/_monkeys (1.2ms)
4116
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
4117
+
4118
+
4119
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-24 10:03:00) [GET]
4120
+
4121
+
4122
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-24 10:03:00) [GET]
4123
+ Rendering markaby/broken
4124
+ SQL (0.2ms)  SELECT name
4125
+ FROM sqlite_master
4126
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4127
+ 
4128
+ SQL (0.1ms) select sqlite_version(*)
4129
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4130
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4131
+ SQL (0.1ms)  SELECT name
4132
+ FROM sqlite_master
4133
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4134
+ 
4135
+
4136
+
4137
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-24 10:03:14) [GET]
4138
+ Completed in 5ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
4139
+
4140
+
4141
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-24 10:03:14) [GET]
4142
+ Rendering markaby/create
4143
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
4144
+
4145
+
4146
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-24 10:03:14) [GET]
4147
+ Rendering markaby/index
4148
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
4149
+
4150
+
4151
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-24 10:03:14) [GET]
4152
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
4153
+
4154
+
4155
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-24 10:03:14) [GET]
4156
+ Rendering markaby/multiple_forms
4157
+ Completed in 4ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
4158
+
4159
+
4160
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-24 10:03:14) [GET]
4161
+ Rendered markaby/_monkeys (1.1ms)
4162
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
4163
+
4164
+
4165
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-24 10:03:14) [GET]
4166
+
4167
+
4168
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-24 10:03:14) [GET]
4169
+ Rendering markaby/broken
4170
+ SQL (0.2ms)  SELECT name
4171
+ FROM sqlite_master
4172
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4173
+ 
4174
+ SQL (0.2ms) select sqlite_version(*)
4175
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4176
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4177
+ SQL (0.2ms)  SELECT name
4178
+ FROM sqlite_master
4179
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4180
+ 
4181
+
4182
+
4183
+ Processing MarkabyController#basic_inline_rendering (for 0.0.0.0 at 2009-04-24 10:04:29) [GET]
4184
+ Completed in 5ms (View: 4, DB: 1) | 200 OK [http://test.host/markaby/basic_inline_rendering]
4185
+
4186
+
4187
+ Processing MarkabyController#create (for 0.0.0.0 at 2009-04-24 10:04:29) [GET]
4188
+ Rendering markaby/create
4189
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby/create]
4190
+
4191
+
4192
+ Processing MarkabyController#index (for 0.0.0.0 at 2009-04-24 10:04:29) [GET]
4193
+ Rendering markaby/index
4194
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/markaby]
4195
+
4196
+
4197
+ Processing MarkabyController#inline_helper_rendering (for 0.0.0.0 at 2009-04-24 10:04:29) [GET]
4198
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/markaby/inline_helper_rendering]
4199
+
4200
+
4201
+ Processing MarkabyController#multiple_forms (for 0.0.0.0 at 2009-04-24 10:04:29) [GET]
4202
+ Rendering markaby/multiple_forms
4203
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/multiple_forms]
4204
+
4205
+
4206
+ Processing MarkabyController#partial_rendering (for 0.0.0.0 at 2009-04-24 10:04:29) [GET]
4207
+ Rendered markaby/_monkeys (1.3ms)
4208
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/markaby/partial_rendering]
4209
+
4210
+
4211
+ Processing MarkabyController#partial_rendering_with_stringy_keys_in_local_assigns (for 0.0.0.0 at 2009-04-24 10:04:29) [GET]
4212
+
4213
+
4214
+ Processing MarkabyController#broken (for 0.0.0.0 at 2009-04-24 10:04:29) [GET]
4215
+ Rendering markaby/broken