thorero 0.9.4.4 → 0.9.4.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 (298) hide show
  1. data/LICENSE +1 -1
  2. data/README +21 -0
  3. data/Rakefile +275 -108
  4. data/TODO +0 -0
  5. data/bin/merb +12 -0
  6. data/bin/merb-specs +5 -0
  7. data/docs/bootloading.dox +58 -0
  8. data/docs/documentation_standards +40 -0
  9. data/docs/merb-core-call-stack-diagram.mmap +0 -0
  10. data/docs/merb-core-call-stack-diagram.pdf +0 -0
  11. data/docs/merb-core-call-stack-diagram.png +0 -0
  12. data/docs/new_render_api +51 -0
  13. data/lib/merb-core.rb +603 -0
  14. data/lib/merb-core/autoload.rb +32 -0
  15. data/lib/merb-core/bootloader.rb +708 -0
  16. data/lib/merb-core/config.rb +303 -0
  17. data/lib/merb-core/constants.rb +43 -0
  18. data/lib/merb-core/controller/abstract_controller.rb +578 -0
  19. data/lib/merb-core/controller/exceptions.rb +302 -0
  20. data/lib/merb-core/controller/merb_controller.rb +256 -0
  21. data/lib/merb-core/controller/mime.rb +106 -0
  22. data/lib/merb-core/controller/mixins/authentication.rb +87 -0
  23. data/lib/merb-core/controller/mixins/controller.rb +290 -0
  24. data/lib/merb-core/controller/mixins/render.rb +481 -0
  25. data/lib/merb-core/controller/mixins/responder.rb +472 -0
  26. data/lib/merb-core/controller/template.rb +254 -0
  27. data/lib/merb-core/core_ext.rb +8 -0
  28. data/lib/merb-core/core_ext/kernel.rb +319 -0
  29. data/lib/merb-core/dispatch/cookies.rb +91 -0
  30. data/lib/merb-core/dispatch/dispatcher.rb +278 -0
  31. data/lib/merb-core/dispatch/exceptions.html.erb +303 -0
  32. data/lib/merb-core/dispatch/request.rb +603 -0
  33. data/lib/merb-core/dispatch/router.rb +179 -0
  34. data/lib/merb-core/dispatch/router/behavior.rb +867 -0
  35. data/lib/merb-core/dispatch/router/cached_proc.rb +52 -0
  36. data/lib/merb-core/dispatch/router/route.rb +321 -0
  37. data/lib/merb-core/dispatch/session.rb +78 -0
  38. data/lib/merb-core/dispatch/session/cookie.rb +168 -0
  39. data/lib/merb-core/dispatch/session/memcached.rb +184 -0
  40. data/lib/merb-core/dispatch/session/memory.rb +241 -0
  41. data/lib/merb-core/dispatch/worker.rb +28 -0
  42. data/lib/merb-core/gem_ext/erubis.rb +77 -0
  43. data/lib/{extlib → merb-core}/logger.rb +2 -2
  44. data/lib/merb-core/plugins.rb +59 -0
  45. data/lib/merb-core/rack.rb +21 -0
  46. data/lib/merb-core/rack/adapter.rb +44 -0
  47. data/lib/merb-core/rack/adapter/ebb.rb +25 -0
  48. data/lib/merb-core/rack/adapter/evented_mongrel.rb +26 -0
  49. data/lib/merb-core/rack/adapter/fcgi.rb +17 -0
  50. data/lib/merb-core/rack/adapter/irb.rb +118 -0
  51. data/lib/merb-core/rack/adapter/mongrel.rb +26 -0
  52. data/lib/merb-core/rack/adapter/runner.rb +28 -0
  53. data/lib/merb-core/rack/adapter/swiftiplied_mongrel.rb +26 -0
  54. data/lib/merb-core/rack/adapter/thin.rb +39 -0
  55. data/lib/merb-core/rack/adapter/thin_turbo.rb +24 -0
  56. data/lib/merb-core/rack/adapter/webrick.rb +36 -0
  57. data/lib/merb-core/rack/application.rb +18 -0
  58. data/lib/merb-core/rack/handler/mongrel.rb +97 -0
  59. data/lib/merb-core/rack/middleware.rb +26 -0
  60. data/lib/merb-core/rack/middleware/path_prefix.rb +31 -0
  61. data/lib/merb-core/rack/middleware/profiler.rb +19 -0
  62. data/lib/merb-core/rack/middleware/static.rb +45 -0
  63. data/lib/merb-core/server.rb +252 -0
  64. data/lib/merb-core/tasks/audit.rake +68 -0
  65. data/lib/merb-core/tasks/merb.rb +1 -0
  66. data/lib/merb-core/tasks/merb_rake_helper.rb +12 -0
  67. data/lib/merb-core/test.rb +11 -0
  68. data/lib/merb-core/test/helpers.rb +9 -0
  69. data/lib/merb-core/test/helpers/controller_helper.rb +8 -0
  70. data/lib/merb-core/test/helpers/multipart_request_helper.rb +175 -0
  71. data/lib/merb-core/test/helpers/request_helper.rb +344 -0
  72. data/lib/merb-core/test/helpers/route_helper.rb +33 -0
  73. data/lib/merb-core/test/helpers/view_helper.rb +121 -0
  74. data/lib/merb-core/test/matchers.rb +9 -0
  75. data/lib/merb-core/test/matchers/controller_matchers.rb +319 -0
  76. data/lib/merb-core/test/matchers/route_matchers.rb +136 -0
  77. data/lib/merb-core/test/matchers/view_matchers.rb +335 -0
  78. data/lib/merb-core/test/run_specs.rb +47 -0
  79. data/lib/merb-core/test/tasks/spectasks.rb +68 -0
  80. data/lib/merb-core/test/test_ext/hpricot.rb +32 -0
  81. data/lib/merb-core/test/test_ext/object.rb +14 -0
  82. data/lib/merb-core/test/test_ext/string.rb +14 -0
  83. data/lib/merb-core/vendor/facets.rb +2 -0
  84. data/lib/merb-core/vendor/facets/dictionary.rb +433 -0
  85. data/lib/merb-core/vendor/facets/inflect.rb +345 -0
  86. data/lib/merb-core/version.rb +11 -0
  87. data/spec/private/config/adapter_spec.rb +32 -0
  88. data/spec/private/config/config_spec.rb +202 -0
  89. data/spec/private/config/environment_spec.rb +13 -0
  90. data/spec/private/config/spec_helper.rb +1 -0
  91. data/spec/private/core_ext/kernel_spec.rb +169 -0
  92. data/spec/private/dispatch/bootloader_spec.rb +24 -0
  93. data/spec/private/dispatch/cookies_spec.rb +107 -0
  94. data/spec/private/dispatch/dispatch_spec.rb +35 -0
  95. data/spec/private/dispatch/fixture/app/controllers/application.rb +4 -0
  96. data/spec/private/dispatch/fixture/app/controllers/exceptions.rb +27 -0
  97. data/spec/private/dispatch/fixture/app/controllers/foo.rb +21 -0
  98. data/spec/private/dispatch/fixture/app/helpers/global_helpers.rb +8 -0
  99. data/spec/private/dispatch/fixture/app/views/exeptions/client_error.html.erb +37 -0
  100. data/spec/private/dispatch/fixture/app/views/exeptions/internal_server_error.html.erb +216 -0
  101. data/spec/private/dispatch/fixture/app/views/exeptions/not_acceptable.html.erb +38 -0
  102. data/spec/private/dispatch/fixture/app/views/exeptions/not_found.html.erb +40 -0
  103. data/spec/private/dispatch/fixture/app/views/foo/bar.html.erb +0 -0
  104. data/spec/private/dispatch/fixture/app/views/layout/application.html.erb +11 -0
  105. data/spec/private/dispatch/fixture/config/black_hole.rb +12 -0
  106. data/spec/private/dispatch/fixture/config/environments/development.rb +6 -0
  107. data/spec/private/dispatch/fixture/config/environments/production.rb +5 -0
  108. data/spec/private/dispatch/fixture/config/environments/test.rb +6 -0
  109. data/spec/private/dispatch/fixture/config/init.rb +45 -0
  110. data/spec/private/dispatch/fixture/config/rack.rb +11 -0
  111. data/spec/private/dispatch/fixture/config/router.rb +35 -0
  112. data/spec/private/dispatch/fixture/log/merb_test.log +1874 -0
  113. data/spec/private/dispatch/fixture/public/images/merb.jpg +0 -0
  114. data/spec/private/dispatch/fixture/public/merb.fcgi +4 -0
  115. data/spec/private/dispatch/fixture/public/stylesheets/master.css +119 -0
  116. data/spec/private/dispatch/route_params_spec.rb +24 -0
  117. data/spec/private/dispatch/session_mixin_spec.rb +47 -0
  118. data/spec/private/dispatch/spec_helper.rb +1 -0
  119. data/spec/private/plugins/plugin_spec.rb +166 -0
  120. data/spec/private/rack/application_spec.rb +49 -0
  121. data/spec/private/router/behavior_spec.rb +60 -0
  122. data/spec/private/router/fixture/log/merb_test.log +139 -0
  123. data/spec/private/router/route_spec.rb +414 -0
  124. data/spec/private/router/router_spec.rb +175 -0
  125. data/spec/private/vendor/facets/plural_spec.rb +564 -0
  126. data/spec/private/vendor/facets/singular_spec.rb +489 -0
  127. data/spec/public/DEFINITIONS +11 -0
  128. data/spec/public/abstract_controller/controllers/alt_views/layout/application.erb +1 -0
  129. data/spec/public/abstract_controller/controllers/alt_views/layout/merb/test/fixtures/abstract/render_string_controller_layout.erb +1 -0
  130. data/spec/public/abstract_controller/controllers/alt_views/layout/merb/test/fixtures/abstract/render_template_controller_layout.erb +1 -0
  131. data/spec/public/abstract_controller/controllers/alt_views/merb/test/fixtures/abstract/display_object_with_multiple_roots/index.erb +1 -0
  132. data/spec/public/abstract_controller/controllers/alt_views/merb/test/fixtures/abstract/display_object_with_multiple_roots/show.erb +1 -0
  133. data/spec/public/abstract_controller/controllers/alt_views/merb/test/fixtures/abstract/render_template_multiple_roots/index.erb +1 -0
  134. data/spec/public/abstract_controller/controllers/alt_views/partial/basic_partial_with_multiple_roots/_partial.erb +1 -0
  135. data/spec/public/abstract_controller/controllers/alt_views/render_template_multiple_roots_and_custom_location/index.erb +1 -0
  136. data/spec/public/abstract_controller/controllers/alt_views/render_template_multiple_roots_inherited/index.erb +1 -0
  137. data/spec/public/abstract_controller/controllers/cousins.rb +41 -0
  138. data/spec/public/abstract_controller/controllers/display.rb +54 -0
  139. data/spec/public/abstract_controller/controllers/filters.rb +193 -0
  140. data/spec/public/abstract_controller/controllers/helpers.rb +41 -0
  141. data/spec/public/abstract_controller/controllers/partial.rb +121 -0
  142. data/spec/public/abstract_controller/controllers/render.rb +113 -0
  143. data/spec/public/abstract_controller/controllers/views/helpers/capture/index.erb +1 -0
  144. data/spec/public/abstract_controller/controllers/views/helpers/capture_eq/index.erb +1 -0
  145. data/spec/public/abstract_controller/controllers/views/helpers/capture_with_args/index.erb +1 -0
  146. data/spec/public/abstract_controller/controllers/views/helpers/concat/index.erb +1 -0
  147. data/spec/public/abstract_controller/controllers/views/layout/alt.erb +1 -0
  148. data/spec/public/abstract_controller/controllers/views/layout/custom.erb +1 -0
  149. data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/display_object/index.erb +1 -0
  150. data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/display_object_with_action/new.erb +1 -0
  151. data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template/index.erb +1 -0
  152. data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_app_layout/index.erb +0 -0
  153. data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_custom_layout/index.erb +1 -0
  154. data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_multiple_roots/index.erb +1 -0
  155. data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_multiple_roots/show.erb +1 -0
  156. data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_two_throw_contents/index.erb +1 -0
  157. data/spec/public/abstract_controller/controllers/views/partial/another_directory/_partial.erb +1 -0
  158. data/spec/public/abstract_controller/controllers/views/partial/basic_partial/_partial.erb +1 -0
  159. data/spec/public/abstract_controller/controllers/views/partial/basic_partial/index.erb +1 -0
  160. data/spec/public/abstract_controller/controllers/views/partial/basic_partial_with_multiple_roots/index.erb +1 -0
  161. data/spec/public/abstract_controller/controllers/views/partial/nested_partial/_first.erb +1 -0
  162. data/spec/public/abstract_controller/controllers/views/partial/nested_partial/_second.erb +1 -0
  163. data/spec/public/abstract_controller/controllers/views/partial/nested_partial/index.erb +1 -0
  164. data/spec/public/abstract_controller/controllers/views/partial/partial_in_another_directory/index.erb +1 -0
  165. data/spec/public/abstract_controller/controllers/views/partial/partial_with_both/_collection.erb +1 -0
  166. data/spec/public/abstract_controller/controllers/views/partial/partial_with_both/index.erb +1 -0
  167. data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections/_collection.erb +1 -0
  168. data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections/index.erb +1 -0
  169. data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections_and_as/_collection.erb +1 -0
  170. data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections_and_as/index.erb +1 -0
  171. data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections_and_counter/_collection.erb +1 -0
  172. data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections_and_counter/index.erb +1 -0
  173. data/spec/public/abstract_controller/controllers/views/partial/partial_with_locals/_variables.erb +1 -0
  174. data/spec/public/abstract_controller/controllers/views/partial/partial_with_locals/index.erb +1 -0
  175. data/spec/public/abstract_controller/controllers/views/partial/partial_with_with_and_locals/_both.erb +1 -0
  176. data/spec/public/abstract_controller/controllers/views/partial/partial_with_with_and_locals/index.erb +1 -0
  177. data/spec/public/abstract_controller/controllers/views/partial/with_absolute_partial/_partial.erb +1 -0
  178. data/spec/public/abstract_controller/controllers/views/partial/with_absolute_partial/index.erb +1 -0
  179. data/spec/public/abstract_controller/controllers/views/partial/with_as_partial/_with_partial.erb +1 -0
  180. data/spec/public/abstract_controller/controllers/views/partial/with_as_partial/index.erb +1 -0
  181. data/spec/public/abstract_controller/controllers/views/partial/with_nil_partial/_with_partial.erb +1 -0
  182. data/spec/public/abstract_controller/controllers/views/partial/with_nil_partial/index.erb +1 -0
  183. data/spec/public/abstract_controller/controllers/views/partial/with_partial/_with_partial.erb +1 -0
  184. data/spec/public/abstract_controller/controllers/views/partial/with_partial/index.erb +1 -0
  185. data/spec/public/abstract_controller/controllers/views/test_display/foo.html.erb +1 -0
  186. data/spec/public/abstract_controller/controllers/views/test_render/foo.html.erb +0 -0
  187. data/spec/public/abstract_controller/controllers/views/wonderful/index.erb +1 -0
  188. data/spec/public/abstract_controller/display_spec.rb +33 -0
  189. data/spec/public/abstract_controller/filter_spec.rb +106 -0
  190. data/spec/public/abstract_controller/helper_spec.rb +21 -0
  191. data/spec/public/abstract_controller/partial_spec.rb +61 -0
  192. data/spec/public/abstract_controller/render_spec.rb +90 -0
  193. data/spec/public/abstract_controller/spec_helper.rb +31 -0
  194. data/spec/public/boot_loader/boot_loader_spec.rb +33 -0
  195. data/spec/public/boot_loader/spec_helper.rb +1 -0
  196. data/spec/public/controller/authentication_spec.rb +103 -0
  197. data/spec/public/controller/base_spec.rb +36 -0
  198. data/spec/public/controller/controllers/authentication.rb +45 -0
  199. data/spec/public/controller/controllers/base.rb +36 -0
  200. data/spec/public/controller/controllers/display.rb +118 -0
  201. data/spec/public/controller/controllers/redirect.rb +30 -0
  202. data/spec/public/controller/controllers/responder.rb +93 -0
  203. data/spec/public/controller/controllers/url.rb +7 -0
  204. data/spec/public/controller/controllers/views/layout/custom.html.erb +1 -0
  205. data/spec/public/controller/controllers/views/layout/custom_arg.html.erb +1 -0
  206. data/spec/public/controller/controllers/views/layout/custom_arg.json.erb +1 -0
  207. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/class_and_local_provides/index.html.erb +1 -0
  208. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/class_and_local_provides/index.xml.erb +1 -0
  209. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/class_provides/index.html.erb +1 -0
  210. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/class_provides/index.xml.erb +1 -0
  211. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/display_with_template/index.html.erb +1 -0
  212. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/display_with_template/no_layout.html.erb +1 -0
  213. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/display_with_template_argument/index.html.erb +1 -0
  214. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/html_default/index.html.erb +1 -0
  215. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/layout/custom.html.erb +1 -0
  216. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/local_provides/index.html.erb +1 -0
  217. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/local_provides/index.xml.erb +1 -0
  218. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/multi_provides/index.html.erb +1 -0
  219. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/multi_provides/index.js.erb +1 -0
  220. data/spec/public/controller/display_spec.rb +84 -0
  221. data/spec/public/controller/redirect_spec.rb +27 -0
  222. data/spec/public/controller/responder_spec.rb +163 -0
  223. data/spec/public/controller/spec_helper.rb +11 -0
  224. data/spec/public/controller/url_spec.rb +180 -0
  225. data/spec/public/core/merb_core_spec.rb +45 -0
  226. data/spec/public/core_ext/class_spec.rb +91 -0
  227. data/spec/public/core_ext/fixtures/core_ext_dependency.rb +2 -0
  228. data/spec/public/core_ext/kernel_spec.rb +9 -0
  229. data/spec/public/core_ext/spec_helper.rb +1 -0
  230. data/spec/public/directory_structure/directory/app/controllers/application.rb +3 -0
  231. data/spec/public/directory_structure/directory/app/controllers/base.rb +13 -0
  232. data/spec/public/directory_structure/directory/app/controllers/custom.rb +19 -0
  233. data/spec/public/directory_structure/directory/app/views/base/template.html.erb +1 -0
  234. data/spec/public/directory_structure/directory/app/views/wonderful/template.erb +1 -0
  235. data/spec/public/directory_structure/directory/config/router.rb +3 -0
  236. data/spec/public/directory_structure/directory/log/merb_test.log +562 -0
  237. data/spec/public/directory_structure/directory_spec.rb +44 -0
  238. data/spec/public/logger/logger_spec.rb +181 -0
  239. data/spec/public/logger/spec_helper.rb +1 -0
  240. data/spec/public/reloading/directory/app/controllers/application.rb +3 -0
  241. data/spec/public/reloading/directory/app/controllers/reload.rb +6 -0
  242. data/spec/public/reloading/directory/config/init.rb +2 -0
  243. data/spec/public/reloading/directory/log/merb_test.log +138 -0
  244. data/spec/public/reloading/reload_spec.rb +103 -0
  245. data/spec/public/request/multipart_spec.rb +41 -0
  246. data/spec/public/request/request_spec.rb +228 -0
  247. data/spec/public/router/default_spec.rb +21 -0
  248. data/spec/public/router/deferred_spec.rb +22 -0
  249. data/spec/public/router/fixation_spec.rb +27 -0
  250. data/spec/public/router/fixture/log/merb_test.log +1556 -0
  251. data/spec/public/router/namespace_spec.rb +113 -0
  252. data/spec/public/router/nested_matches_spec.rb +97 -0
  253. data/spec/public/router/nested_resources_spec.rb +41 -0
  254. data/spec/public/router/resource_spec.rb +37 -0
  255. data/spec/public/router/resources_spec.rb +82 -0
  256. data/spec/public/router/spec_helper.rb +90 -0
  257. data/spec/public/router/special_spec.rb +61 -0
  258. data/spec/public/router/string_spec.rb +61 -0
  259. data/spec/public/template/template_spec.rb +104 -0
  260. data/spec/public/template/templates/error.html.erb +2 -0
  261. data/spec/public/template/templates/template.html.erb +1 -0
  262. data/spec/public/template/templates/template.html.myt +1 -0
  263. data/spec/public/test/controller_matchers_spec.rb +402 -0
  264. data/spec/public/test/controllers/controller_assertion_mock.rb +7 -0
  265. data/spec/public/test/controllers/dispatch_controller.rb +11 -0
  266. data/spec/public/test/controllers/spec_helper_controller.rb +38 -0
  267. data/spec/public/test/multipart_request_helper_spec.rb +159 -0
  268. data/spec/public/test/multipart_upload_text_file.txt +1 -0
  269. data/spec/public/test/request_helper_spec.rb +221 -0
  270. data/spec/public/test/route_helper_spec.rb +71 -0
  271. data/spec/public/test/route_matchers_spec.rb +162 -0
  272. data/spec/public/test/view_helper_spec.rb +96 -0
  273. data/spec/public/test/view_matchers_spec.rb +183 -0
  274. data/spec/spec_helper.rb +68 -0
  275. metadata +493 -41
  276. data/README.txt +0 -3
  277. data/lib/extlib.rb +0 -32
  278. data/lib/extlib/assertions.rb +0 -8
  279. data/lib/extlib/blank.rb +0 -42
  280. data/lib/extlib/class.rb +0 -175
  281. data/lib/extlib/hash.rb +0 -410
  282. data/lib/extlib/hook.rb +0 -366
  283. data/lib/extlib/inflection.rb +0 -141
  284. data/lib/extlib/lazy_array.rb +0 -106
  285. data/lib/extlib/mash.rb +0 -143
  286. data/lib/extlib/module.rb +0 -37
  287. data/lib/extlib/object.rb +0 -165
  288. data/lib/extlib/object_space.rb +0 -13
  289. data/lib/extlib/pathname.rb +0 -5
  290. data/lib/extlib/pooling.rb +0 -233
  291. data/lib/extlib/rubygems.rb +0 -38
  292. data/lib/extlib/simple_set.rb +0 -39
  293. data/lib/extlib/string.rb +0 -132
  294. data/lib/extlib/struct.rb +0 -8
  295. data/lib/extlib/tasks/release.rb +0 -9
  296. data/lib/extlib/time.rb +0 -12
  297. data/lib/extlib/version.rb +0 -3
  298. data/lib/extlib/virtual_file.rb +0 -10
@@ -0,0 +1,216 @@
1
+ <html>
2
+ <head>
3
+ <meta http-equiv="Content-type" content="text/html; charset=utf-8">
4
+ <title><%= @exception_name %></title>
5
+ <style type="text/css" media="screen">
6
+ body {
7
+ font-family:arial;
8
+ font-size:11px;
9
+ }
10
+ h1 {
11
+ font-size:48px;
12
+ letter-spacing:-4px;
13
+ margin:0;
14
+ line-height:36px;
15
+ color:#333;
16
+ }
17
+ h1 sup {
18
+ font-size: 0.5em;
19
+ }
20
+ h1 sup.error_500, h1 sup.error_400 {
21
+ color:#990E05;
22
+ }
23
+ h1 sup.error_100, h1 sup.error_200 {
24
+ color:#00BF10;
25
+ }
26
+ h1 sup.error_300 {
27
+ /* pretty sure you cant 'see' status 300
28
+ errors but if you could I think they
29
+ would be blue */
30
+ color:#1B2099;
31
+ }
32
+ h2 {
33
+ font-size:36px;
34
+ letter-spacing:-3px;
35
+ margin:0;
36
+ line-height:28px;
37
+ color:#444;
38
+ }
39
+ a, a:visited {
40
+ color:#00BF10;
41
+ }
42
+ .internalError {
43
+ width:800px;
44
+ margin:50px auto;
45
+ }
46
+ .header {
47
+ border-bottom:10px solid #333;
48
+ margin-bottom:1px;
49
+ background-image: url("data:image/gif;base64,R0lGODlhAwADAIAAAP///8zMzCH5BAAAAAAALAAAAAADAAMAAAIEBHIJBQA7");
50
+ padding:20px;
51
+ }
52
+ table.trace {
53
+ width:100%;
54
+ font-family:courier, monospace;
55
+ letter-spacing:-1px;
56
+ border-collapse: collapse;
57
+ border-spacing:0;
58
+ }
59
+ table.trace tr td{
60
+ padding:0;
61
+ height:26px;
62
+ font-size:13px;
63
+ vertical-align:middle;
64
+ }
65
+ table.trace tr.file{
66
+ border-top:2px solid #fff;
67
+ background-color:#F3F3F3;
68
+ }
69
+ table.trace tr.source {
70
+ background-color:#F8F8F8;
71
+ display:none;
72
+ }
73
+ table.trace .open tr.source {
74
+ display:table-row;
75
+ }
76
+ table.trace tr.file td.expand {
77
+ width:23px;
78
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAXCAIAAABvSEP3AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAdVJREFUeNqMVL+TwUAYxaRIOlEhlZHGDAUzzOQ61+AqXMV1lJSU7q/QRqm8KFUcJTNn5qJkaPyoKKVz7y4mF8na5Kt29tt9+/Z97/u81+vVQ4r9frdarS6Xi7ETDIZisRjxMGPfmk4niNPpZE+xLAugbPaZ53nzvtfMBe/3+/3dbuehBrAKhZdUKkVAWa9Xsiybv0CPZDJZLr/qa5/BwgwRjYqOKIvFYjQa/aNommZh0Ww2K5UqzwfoQOPxaLPZ3FAmk0+7lplMpt1u53J5OpBOR0eZEE9wHJfP5zud93g88QhluwWbjW+5VOmKBgKBer3eaDTDYeGBQF8+x7rqIYoiPgixWJazpA6HA+MSxRArkUgMh0M409g8Ho8+9wYxxCqVSq1W26EDHGM2m4HOHQrEc38f/Yn7cLmlIRhBENzcx8cVRZnPZ/YUep2BWkjTIfA+PKVpZAXR5QxsjiqCKvGEqqp443w+0dvy17swqD0HB3S73V5PpkNg1qBqt8kwGCjmPkinM0QJbIoEa7U6UG6ToVgs4V9G2g0ESoP5Aoi7KYX5oCgf8IKbkvn9/mr1LRQKESamzgJy0g0tSZIuB3nuGqRU9Vv9C4sKkUhEkp4soxvxI8AAhWrrtXa3X8EAAAAASUVORK5CYII=);
79
+ background-position:top left;
80
+ background-repeat:no-repeat;
81
+ }
82
+ table.trace .open tr.file td.expand {
83
+ width:19px;
84
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAB1CAIAAAAqdO2mAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXZJREFUeNrslK1ywkAUhcMOBomEOiSdqLxEBJX0NaijOsjyHGGmCGyQQYaiiiw4gktkcOmZbpsuuzQ/M5XnqJ2d3S/n3nM3rTzPLUP7/Tt0+pLcGQwG3W53OLyHzPMtjYL7q9UqSRLrD4E1Gj1orCvKYuFHUWTVkOM44/HjDcp8/lL4r6NerzeZPMm1KFw0QkDn83m5fP2lHA4fNQvRtNvtjsfDd0WzmSfb2e/fdTqdOvdh/HLJZLOn0+d2HJ+KRGzbdl23EpFlmed5cp2maRzHQq1lvQ5KMi6EUZBGfup6E1pTfd+vrGW7jbQ2C9hTt9BpqNyIWaAwAy6xg2eBz5iRC/NomiZhGN5sqmnkauo0BUGgVQoBjQ80oCACgNQdZHfTYBkF2mxCtWWAqunWpahxIDUt3QYUxIFQpJHyIWpXjinabKbbwItMHT+NyjchrP8QKaSQQgoppJBCCimkkEIKKaSQQgoppJBCCimkkEIKKaSo+hRgAEFD17X08O2NAAAAAElFTkSuQmCC);
85
+ background-position:top left;
86
+ background-repeat:no-repeat;
87
+ }
88
+ table.trace tr.source td.collapse {
89
+ width:19px;
90
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAB1CAIAAAAqdO2mAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAVxJREFUeNrs0zFygkAUBmBlUkgJHdABlQwVkVJKKUxBYWbkALTxMJwhltyDFkss03IF8pudIcwaDaDl/6pd2P327b7d+eHwMXs4lNkzggoVKlSoUKFChQoVKlSoUKFChQoVKlSoUKFChQqVEYqm6ft9+qiSJEkYho7jTlcw2fd9NOI4nq4gEdFwXXe1Cqco63VkWVbXRTqLhTpOwQRpF7quR1E0TgGhqvLKUFCyoQqG/rks3O6kZKW/eRFpevOCoGTXVTcMQ5EyxyDEkML1c5RzuZOICIyXqn7JBVez6282MWrx731HOv2qB8Hri2lamNk0DfpVVdV1Peodappmmua8bdvzuc7zfNprzrLMth1FnGh/X8MjCAIQv/cFz/+65PcDh7rbvYv2ZUfdj+PxsyzLgVl0hKwgTqeqKApx2LeOc7t98zyv/1FWOgvx9RPii23bmL9cetJ8Ed8CDAC6aFW8bCzFhwAAAABJRU5ErkJggg==);
91
+ background-position:bottom left;
92
+ background-repeat:no-repeat;
93
+ background-color:#6F706F;
94
+ }
95
+ table.trace tr td.path {
96
+ padding-left:10px;
97
+ }
98
+ table.trace tr td.code {
99
+ padding-left:35px;
100
+ white-space: pre;
101
+ line-height:9px;
102
+ padding-bottom:10px;
103
+ }
104
+ table.trace tr td.code em {
105
+ font-weight:bold;
106
+ color:#00BF10;
107
+ }
108
+ table.trace tr td.code a {
109
+ width: 20px;
110
+ float: left;
111
+ }
112
+ table.trace tr td.code .more {
113
+ color:#666;
114
+ }
115
+ table.trace tr td.line {
116
+ width:30px;
117
+ text-align:right;
118
+ padding-right:4px;
119
+ }
120
+ .footer {
121
+ margin-top:5px;
122
+ font-size:11px;
123
+ color:#444;
124
+ text-align:right;
125
+ }
126
+ </style>
127
+ </head>
128
+ <body>
129
+ <div class="internalError">
130
+
131
+ <div class="header">
132
+ <h1><%= @exception_name %> <sup class="error_<%= @exception.class.status %>"><%= @exception.class.status %></sup></h1>
133
+ <% if show_details = ::Merb::Config[:exception_details] -%>
134
+ <h2><%= @exception.message %></h2>
135
+ <% else -%>
136
+ <h2>Sorry about that...</h2>
137
+ <% end -%>
138
+ <h3>Parameters</h3>
139
+ <ul>
140
+ <% params[:original_params].each do |param, value| %>
141
+ <li><strong><%= param %>:</strong> <%= value.inspect %></li>
142
+ <% end %>
143
+ <%= "<li>None</li>" if params[:original_params].empty? %>
144
+ </ul>
145
+
146
+ <h3>Session</h3>
147
+ <ul>
148
+ <% params[:original_session].each do |param, value| %>
149
+ <li><strong><%= param %>:</strong> <%= value.inspect %></li>
150
+ <% end %>
151
+ <%= "<li>None</li>" if params[:original_session].empty? %>
152
+ </ul>
153
+
154
+ <h3>Cookies</h3>
155
+ <ul>
156
+ <% params[:original_cookies].each do |param, value| %>
157
+ <li><strong><%= param %>:</strong> <%= value.inspect %></li>
158
+ <% end %>
159
+ <%= "<li>None</li>" if params[:original_cookies].empty? %>
160
+ </ul>
161
+ </div>
162
+
163
+ <% if show_details %>
164
+ <table class="trace">
165
+ <% @exception.backtrace.each_with_index do |line, index| %>
166
+ <tbody class="close">
167
+ <tr class="file">
168
+ <td class="expand">
169
+ </td>
170
+ <td class="path">
171
+ <%= (line.match(/^([^:]+)/)[1] rescue 'unknown').sub(/\/((opt|usr)\/local\/lib\/(ruby\/)?(gems\/)?(1.8\/)?(gems\/)?|.+\/app\/)/, '') %>
172
+ <% unless line.match(/\.erb:/) %>
173
+ in "<strong><%= line.match(/:in `(.+)'$/)[1] rescue '?' %></strong>"
174
+ <% else %>
175
+ (<strong>ERB Template</strong>)
176
+ <% end %>
177
+ </td>
178
+ <td class="line">
179
+ <a href="txmt://open?url=file://<%=file = (line.match(/^([^:]+)/)[1] rescue 'unknown')%>&amp;line=<%= lineno = line.match(/:([0-9]+):/)[1] rescue '?' %>"><%=lineno%></a>&nbsp;
180
+ </td>
181
+ </tr>
182
+ <tr class="source">
183
+ <td class="collapse">
184
+ </td>
185
+ <td class="code" colspan="2"><% (__caller_lines__(file, lineno, 5) rescue []).each do |llineno, lcode, lcurrent| %>
186
+ <a href="txmt://open?url=file://<%=file%>&amp;line=<%=llineno%>"><%= llineno %></a><%='<em>' if llineno==lineno.to_i %><%= lcode.size > 90 ? Erubis::XmlHelper.html_escape(lcode[0..90])+'<span class="more">......</span>' : Erubis::XmlHelper.html_escape(lcode) %><%='</em>' if llineno==lineno.to_i %>
187
+ <% end %>
188
+
189
+ </td>
190
+ </tr>
191
+ </tbody>
192
+ <% end %>
193
+ </table>
194
+ <script type="text/javascript" charset="utf-8">
195
+ // swop the open & closed classes
196
+ els = document.getElementsByTagName('td');
197
+ for(i=0; i<els.length; i++){
198
+ if(els[i].className=='expand' || els[i].className=='collapse'){
199
+ els[i].onclick = function(e){
200
+ tbody = this.parentNode.parentNode;
201
+ if(tbody.className=='open'){
202
+ tbody.className='closed';
203
+ }else{
204
+ tbody.className='open';
205
+ }
206
+ }
207
+ }
208
+ }
209
+ </script>
210
+ <% end %>
211
+ <div class="footer">
212
+ lots of love, from <a href="#">merb</a>
213
+ </div>
214
+ </div>
215
+ </body>
216
+ </html>
@@ -0,0 +1,38 @@
1
+ <div id="container">
2
+ <div id="header-container">
3
+ <img src="/images/merb.jpg">
4
+ <!-- <h1>Mongrel + Erb</h1> -->
5
+ <h2>pocket rocket web framework</h2>
6
+ <hr />
7
+ </div>
8
+
9
+ <div id="left-container">
10
+ <h3>Exception:</h3>
11
+ <p><%= params[:exception] %></p>
12
+ </div>
13
+
14
+ <div id="main-container">
15
+ <h3>Why am I seeing this page?</h3>
16
+ <p>Merb couldn't find an appropriate content_type to return,
17
+ based on what you said was available via provides() and
18
+ what the client requested. For more information, visit
19
+ http://merbivore.com/fixing_406_issues
20
+ </p>
21
+
22
+ <h3>Where can I find help?</h3>
23
+ <p>If you have any questions or if you can't figure something out, please take a
24
+ look at our <a href="http://merb.devjavu.com/"> project development page</a> or,
25
+ feel free to come chat at irc.freenode.net, channel #merb.</p>
26
+
27
+ <h3>How do I edit this page?</h3>
28
+ <p>You can change what people see when this happens by editing <tt>app/views/exceptions/not_found.html.erb</tt>.</p>
29
+
30
+ </div>
31
+
32
+ <div id="footer-container">
33
+ <hr />
34
+ <div class="left"></div>
35
+ <div class="right">&copy; 2008 the merb dev team</div>
36
+ <p>&nbsp;</p>
37
+ </div>
38
+ </div>
@@ -0,0 +1,40 @@
1
+ <div id="container">
2
+ <div id="header-container">
3
+ <img src="/images/merb.jpg">
4
+ <!-- <h1>Mongrel + Erb</h1> -->
5
+ <h2>pocket rocket web framework</h2>
6
+ <hr />
7
+ </div>
8
+
9
+ <div id="left-container">
10
+ <h3>Exception:</h3>
11
+ <p><%= params[:exception] %></p>
12
+ </div>
13
+
14
+ <div id="main-container">
15
+ <h3>Welcome to Merb!</h3>
16
+ <p>Merb is a light-weight MVC framework written in Ruby. We hope you enjoy it.</p>
17
+
18
+ <h3>Where can I find help?</h3>
19
+ <p>If you have any questions or if you can't figure something out, please take a
20
+ look at our <a href="http://merb.devjavu.com/"> project development page</a> or,
21
+ feel free to come chat at irc.freenode.net, channel #merb.</p>
22
+
23
+ <h3>How do I edit this page?</h3>
24
+ <p>You're seeing this page because you need to edit the following files:
25
+ <ul>
26
+ <li>config/merb.yml <strong><em>(optional)</em></strong></li>
27
+ <li>config/router.rb <strong><em>(recommended)</em></strong></li>
28
+ <li>app/views/exceptions/not_found.html.erb <strong><em>(recommended)</em></strong></li>
29
+ <li>app/views/layout/application.html.erb <strong><em>(change this layout)</em></strong></li>
30
+ </ul>
31
+ </p>
32
+ </div>
33
+
34
+ <div id="footer-container">
35
+ <hr />
36
+ <div class="left"></div>
37
+ <div class="right">&copy; 2008 the merb dev team</div>
38
+ <p>&nbsp;</p>
39
+ </div>
40
+ </div>
@@ -0,0 +1,11 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us" lang="en-us">
3
+ <head>
4
+ <title>Fresh Merb App</title>
5
+ <meta http-equiv="content-type" content="text/html; charset=utf-8" />
6
+ <link rel="stylesheet" href="/stylesheets/master.css" type="text/css" media="screen" charset="utf-8">
7
+ </head>
8
+ <body>
9
+ <%= catch_content :for_layout %>
10
+ </body>
11
+ </html>
@@ -0,0 +1,12 @@
1
+ # Alternate rackup config
2
+ module Rack
3
+ module Adapter
4
+ class BlackHole
5
+ def call(env)
6
+ [ 200, { "Content-Type" => "text/plain" }, "" ]
7
+ end
8
+ end
9
+ end
10
+ end
11
+
12
+ run Rack::Adapter::BlackHole.new
@@ -0,0 +1,6 @@
1
+ Merb.logger.info("Loaded DEVELOPMENT Environment...")
2
+ Merb::Config.use { |c|
3
+ c[:exception_details] = true
4
+ c[:reload_classes] = true
5
+ c[:reload_time] = 0.5
6
+ }
@@ -0,0 +1,5 @@
1
+ Merb.logger.info("Loaded PRODUCTION Environment...")
2
+ Merb::Config.use { |c|
3
+ c[:exception_details] = false
4
+ c[:reload_classes] = false
5
+ }
@@ -0,0 +1,6 @@
1
+ Merb.logger.info("Loaded TEST Environment...")
2
+ Merb::Config.use { |c|
3
+ c[:exception_details] = true
4
+ c[:reload_classes] = true
5
+ c[:reload_time] = 0.5
6
+ }
@@ -0,0 +1,45 @@
1
+ # Make the app's "gems" directory a place where gems are loaded from
2
+ Gem.clear_paths
3
+ Gem.path.unshift(Merb.root / "gems")
4
+
5
+ # Make the app's "lib" directory a place where ruby files get "require"d from
6
+ $LOAD_PATH.unshift(Merb.root / "lib")
7
+
8
+ Merb::Config.use { |c|
9
+ c[:session_store] = 'cookie'
10
+ c[:session_secret_key] = "2c24532b38b8c46d8acf1b5ed71bdd5426dadd9b"
11
+ }
12
+
13
+ ### Merb doesn't come with database support by default. You need
14
+ ### an ORM plugin. Install one, and uncomment one of the following lines,
15
+ ### if you need a database.
16
+
17
+ ### Uncomment for DataMapper ORM
18
+ # use_orm :datamapper
19
+
20
+ ### Uncomment for ActiveRecord ORM
21
+ # use_orm :activerecord
22
+
23
+ ### Uncomment for Sequel ORM
24
+ # use_orm :sequel
25
+
26
+ ### This defines which test framework the generators will use
27
+ ### rspec is turned on by default
28
+ # use_test :test_unit
29
+ # use_test :rspec
30
+
31
+ ### Add your other dependencies here
32
+
33
+ # These are some examples of how you might specify dependencies.
34
+ #
35
+ # dependencies "RedCloth", "merb_helpers"
36
+ # OR
37
+ # dependency "RedCloth", "> 3.0"
38
+ # OR
39
+ # dependencies "RedCloth" => "> 3.0", "ruby-aes-cext" => "= 1.0"
40
+
41
+ Merb::BootLoader.after_app_loads do
42
+ ### Add dependencies here that must load after the application loads:
43
+
44
+ # dependency "magic_admin" # this gem uses the app's model classes
45
+ end
@@ -0,0 +1,11 @@
1
+ # use PathPrefix Middleware if :path_prefix is set in Merb::Config
2
+ if prefix = ::Merb::Config[:path_prefix]
3
+ use Merb::Rack::PathPrefix, prefix
4
+ end
5
+
6
+ # comment this out if you are running merb behind a load balancer
7
+ # that serves static files
8
+ use Merb::Rack::Static, Merb.dir_for(:public)
9
+
10
+ # this is our main merb application
11
+ run Merb::Rack::Application.new
@@ -0,0 +1,35 @@
1
+ # Merb::Router is the request routing mapper for the merb framework.
2
+ #
3
+ # You can route a specific URL to a controller / action pair:
4
+ #
5
+ # r.match("/contact").
6
+ # to(:controller => "info", :action => "contact")
7
+ #
8
+ # You can define placeholder parts of the url with the :symbol notation. These
9
+ # placeholders will be available in the params hash of your controllers. For example:
10
+ #
11
+ # r.match("/books/:book_id/:action").
12
+ # to(:controller => "books")
13
+ #
14
+ # Or, use placeholders in the "to" results for more complicated routing, e.g.:
15
+ #
16
+ # r.match("/admin/:module/:controller/:action/:id").
17
+ # to(:controller => ":module/:controller")
18
+ #
19
+ # You can also use regular expressions, deferred routes, and many other options.
20
+ # See merb/specs/merb/router.rb for a fairly complete usage sample.
21
+
22
+ Merb.logger.info("Compiling routes...")
23
+ Merb::Router.prepare do |r|
24
+ # RESTful routes
25
+ # r.resources :posts
26
+
27
+ # This is the default route for /:controller/:action/:id
28
+ # This is fine for most cases. If you're heavily using resource-based
29
+ # routes, you may want to comment/remove this line to prevent
30
+ # clients from calling your create or destroy actions with a GET
31
+ r.default_routes
32
+
33
+ # Change this for your home page to be available at /
34
+ # r.match('/').to(:controller => 'whatever', :action =>'index')
35
+ end
@@ -0,0 +1,1874 @@
1
+ Thu, 15 May 2008 23:39:02 GMT ~ info ~ Logfile created
2
+ ~ Loaded TEST Environment...
3
+ ~ Compiling routes...
4
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
5
+ ~ Loaded TEST Environment...
6
+ ~ Compiling routes...
7
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
8
+ ~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
9
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
10
+ ~ {:action_time=>0.001342, :before_filters_time=>1.2e-05, :dispatch_time=>0.001549, :after_filters_time=>8.0e-06}
11
+ ~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
12
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
13
+ ~ {:action_time=>0.000314, :before_filters_time=>5.0e-06, :dispatch_time=>0.000459, :after_filters_time=>5.0e-06}
14
+ ~ Loaded TEST Environment...
15
+ ~ Compiling routes...
16
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
17
+ ~ Loaded TEST Environment...
18
+ ~ Compiling routes...
19
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
20
+ ~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
21
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
22
+ ~ {:action_time=>0.001053, :before_filters_time=>9.0e-06, :dispatch_time=>0.001251, :after_filters_time=>7.0e-06}
23
+ ~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
24
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
25
+ ~ {:action_time=>0.000311, :before_filters_time=>6.0e-06, :dispatch_time=>0.000457, :after_filters_time=>5.0e-06}
26
+ ~ Loaded TEST Environment...
27
+ ~ Compiling routes...
28
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
29
+ ~ Loaded TEST Environment...
30
+ ~ Compiling routes...
31
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
32
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
33
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
34
+ ~ {:action_time=>0.00111, :before_filters_time=>9.0e-06, :dispatch_time=>0.001331, :after_filters_time=>8.0e-06}
35
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
36
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
37
+ ~ {:action_time=>0.000319, :before_filters_time=>7.0e-06, :dispatch_time=>0.000469, :after_filters_time=>6.0e-06}
38
+ ~ Loaded TEST Environment...
39
+ ~ Compiling routes...
40
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
41
+ ~ Loaded TEST Environment...
42
+ ~ Compiling routes...
43
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
44
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
45
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
46
+ ~ {:action_time=>0.001173, :before_filters_time=>1.0e-05, :dispatch_time=>0.001384, :after_filters_time=>7.0e-06}
47
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
48
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
49
+ ~ {:action_time=>0.00032, :before_filters_time=>7.0e-06, :dispatch_time=>0.000464, :after_filters_time=>5.0e-06}
50
+ ~ Loaded TEST Environment...
51
+ ~ Compiling routes...
52
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
53
+ ~ Loaded TEST Environment...
54
+ ~ Compiling routes...
55
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
56
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
57
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
58
+ ~ {:action_time=>0.001061, :before_filters_time=>1.0e-05, :dispatch_time=>0.001261, :after_filters_time=>7.0e-06}
59
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
60
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
61
+ ~ {:action_time=>0.001447, :before_filters_time=>7.0e-06, :dispatch_time=>0.003484, :after_filters_time=>5.0e-06}
62
+ ~ Loaded TEST Environment...
63
+ ~ Compiling routes...
64
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
65
+ ~ Loaded TEST Environment...
66
+ ~ Compiling routes...
67
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
68
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
69
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
70
+ ~ {:action_time=>0.001199, :before_filters_time=>1.3e-05, :dispatch_time=>0.001409, :after_filters_time=>7.0e-06}
71
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
72
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
73
+ ~ {:action_time=>0.000318, :before_filters_time=>7.0e-06, :dispatch_time=>0.000515, :after_filters_time=>5.0e-06}
74
+ ~ Loaded TEST Environment...
75
+ ~ Compiling routes...
76
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
77
+ ~ Loaded TEST Environment...
78
+ ~ Compiling routes...
79
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
80
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
81
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
82
+ ~ {:action_time=>0.001115, :before_filters_time=>1.0e-05, :dispatch_time=>0.001333, :after_filters_time=>1.7e-05}
83
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
84
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
85
+ ~ {:action_time=>0.000321, :before_filters_time=>5.0e-06, :dispatch_time=>0.000461, :after_filters_time=>6.0e-06}
86
+ ~ Loaded TEST Environment...
87
+ ~ Compiling routes...
88
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
89
+ ~ Loaded TEST Environment...
90
+ ~ Compiling routes...
91
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
92
+ ~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
93
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
94
+ ~ {:before_filters_time=>1.3e-05, :after_filters_time=>1.2e-05, :action_time=>0.001391, :dispatch_time=>0.001682}
95
+ ~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
96
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
97
+ ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.1e-05, :action_time=>0.000504, :dispatch_time=>0.000695}
98
+ ~ Loaded TEST Environment...
99
+ ~ Compiling routes...
100
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
101
+ ~ Loaded TEST Environment...
102
+ ~ Compiling routes...
103
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
104
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
105
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
106
+ ~ {:action_time=>0.001207, :before_filters_time=>1.0e-05, :dispatch_time=>0.00143, :after_filters_time=>8.0e-06}
107
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
108
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
109
+ ~ {:action_time=>0.000393, :before_filters_time=>7.0e-06, :dispatch_time=>0.000555, :after_filters_time=>6.0e-06}
110
+ ~ Loaded TEST Environment...
111
+ ~ Compiling routes...
112
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
113
+ ~ Loaded TEST Environment...
114
+ ~ Compiling routes...
115
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
116
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
117
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
118
+ ~ {:action_time=>0.00105, :before_filters_time=>1.0e-05, :dispatch_time=>0.001244, :after_filters_time=>6.0e-06}
119
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
120
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
121
+ ~ {:action_time=>0.000309, :before_filters_time=>5.0e-06, :dispatch_time=>0.000447, :after_filters_time=>6.0e-06}
122
+ ~ Loaded TEST Environment...
123
+ ~ Compiling routes...
124
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
125
+ ~ Loaded TEST Environment...
126
+ ~ Compiling routes...
127
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
128
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
129
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
130
+ ~ {:action_time=>0.001244, :before_filters_time=>3.8e-05, :after_filters_time=>8.0e-06, :dispatch_time=>0.001466}
131
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
132
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
133
+ ~ {:action_time=>0.000331, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :dispatch_time=>0.000486}
134
+ ~ Loaded TEST Environment...
135
+ ~ Compiling routes...
136
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
137
+ ~ Loaded TEST Environment...
138
+ ~ Compiling routes...
139
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
140
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
141
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
142
+ ~ {:action_time=>0.001027, :before_filters_time=>9.0e-06, :after_filters_time=>8.0e-06, :dispatch_time=>0.001222}
143
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
144
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
145
+ ~ {:action_time=>0.000308, :before_filters_time=>5.0e-06, :after_filters_time=>6.0e-06, :dispatch_time=>0.000449}
146
+ ~ Loaded TEST Environment...
147
+ ~ Compiling routes...
148
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
149
+ ~ Loaded TEST Environment...
150
+ ~ Compiling routes...
151
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
152
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
153
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
154
+ ~ {:action_time=>0.001176, :before_filters_time=>1.2e-05, :after_filters_time=>7.0e-06, :dispatch_time=>0.001397}
155
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
156
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
157
+ ~ {:action_time=>0.00033, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06, :dispatch_time=>0.000478}
158
+ ~ Loaded TEST Environment...
159
+ ~ Compiling routes...
160
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
161
+ ~ Loaded TEST Environment...
162
+ ~ Compiling routes...
163
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
164
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
165
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
166
+ ~ {:action_time=>0.001029, :before_filters_time=>1.0e-05, :after_filters_time=>7.0e-06, :dispatch_time=>0.001226}
167
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
168
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
169
+ ~ {:action_time=>0.000309, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :dispatch_time=>0.000444}
170
+ ~ Loaded TEST Environment...
171
+ ~ Compiling routes...
172
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
173
+ ~ Loaded TEST Environment...
174
+ ~ Compiling routes...
175
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
176
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
177
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
178
+ ~ {:action_time=>0.001036, :before_filters_time=>1.0e-05, :after_filters_time=>7.0e-06, :dispatch_time=>0.001231}
179
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
180
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
181
+ ~ {:action_time=>0.000307, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :dispatch_time=>0.00045}
182
+ ~ Loaded TEST Environment...
183
+ ~ Compiling routes...
184
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
185
+ ~ Loaded TEST Environment...
186
+ ~ Compiling routes...
187
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
188
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
189
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
190
+ ~ {:action_time=>0.001031, :before_filters_time=>1.0e-05, :after_filters_time=>7.0e-06, :dispatch_time=>0.001226}
191
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
192
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
193
+ ~ {:action_time=>0.000306, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :dispatch_time=>0.000443}
194
+ ~ Loaded TEST Environment...
195
+ ~ Compiling routes...
196
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
197
+ ~ Loaded TEST Environment...
198
+ ~ Compiling routes...
199
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
200
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
201
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
202
+ ~ {:action_time=>0.001048, :before_filters_time=>1.3e-05, :after_filters_time=>1.0e-05, :dispatch_time=>0.00125}
203
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
204
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
205
+ ~ {:action_time=>0.000324, :before_filters_time=>9.0e-06, :after_filters_time=>8.0e-06, :dispatch_time=>0.000472}
206
+ ~ Loaded TEST Environment...
207
+ ~ Compiling routes...
208
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
209
+ ~ Loaded TEST Environment...
210
+ ~ Compiling routes...
211
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
212
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
213
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
214
+ ~ {:action_time=>0.00103, :before_filters_time=>9.0e-06, :after_filters_time=>7.0e-06, :dispatch_time=>0.001232}
215
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
216
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
217
+ ~ {:action_time=>0.000308, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06, :dispatch_time=>0.00045}
218
+ ~ Loaded TEST Environment...
219
+ ~ Compiling routes...
220
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
221
+ ~ Loaded TEST Environment...
222
+ ~ Compiling routes...
223
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
224
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
225
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
226
+ ~ {:action_time=>0.001498, :before_filters_time=>1.2e-05, :after_filters_time=>2.9e-05, :dispatch_time=>0.001781}
227
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
228
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
229
+ ~ {:action_time=>0.00046, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06, :dispatch_time=>0.000657}
230
+ ~ Loaded TEST Environment...
231
+ ~ Compiling routes...
232
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
233
+ ~ Loaded TEST Environment...
234
+ ~ Compiling routes...
235
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
236
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
237
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
238
+ ~ {:dispatch_time=>0.001292, :action_time=>0.001093, :before_filters_time=>9.0e-06, :after_filters_time=>7.0e-06}
239
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
240
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
241
+ ~ {:dispatch_time=>0.000478, :action_time=>0.00034, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
242
+ ~ Loaded TEST Environment...
243
+ ~ Compiling routes...
244
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
245
+ ~ Loaded TEST Environment...
246
+ ~ Compiling routes...
247
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
248
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
249
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
250
+ ~ {:dispatch_time=>0.00138, :action_time=>0.001162, :before_filters_time=>9.0e-06, :after_filters_time=>8.0e-06}
251
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
252
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
253
+ ~ {:dispatch_time=>0.000467, :action_time=>0.000319, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
254
+ ~ Loaded TEST Environment...
255
+ ~ Compiling routes...
256
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
257
+ ~ Loaded TEST Environment...
258
+ ~ Compiling routes...
259
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
260
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
261
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
262
+ ~ {:dispatch_time=>0.001752, :action_time=>0.001472, :before_filters_time=>1.1e-05, :after_filters_time=>9.0e-06}
263
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
264
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
265
+ ~ {:dispatch_time=>0.000576, :action_time=>0.000393, :before_filters_time=>1.7e-05, :after_filters_time=>6.0e-06}
266
+ ~ Loaded TEST Environment...
267
+ ~ Compiling routes...
268
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
269
+ ~ Loaded TEST Environment...
270
+ ~ Compiling routes...
271
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
272
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
273
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
274
+ ~ {:dispatch_time=>0.001273, :action_time=>0.001068, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06}
275
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
276
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
277
+ ~ {:dispatch_time=>0.000446, :action_time=>0.000308, :before_filters_time=>7.0e-06, :after_filters_time=>4.0e-06}
278
+ ~ Loaded TEST Environment...
279
+ ~ Compiling routes...
280
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
281
+ ~ Loaded TEST Environment...
282
+ ~ Compiling routes...
283
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
284
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
285
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
286
+ ~ {:dispatch_time=>0.001302, :action_time=>0.001097, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
287
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
288
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
289
+ ~ {:dispatch_time=>0.00048, :action_time=>0.000302, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
290
+ ~ Loaded TEST Environment...
291
+ ~ Compiling routes...
292
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
293
+ ~ Loaded TEST Environment...
294
+ ~ Compiling routes...
295
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
296
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
297
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
298
+ ~ {:dispatch_time=>0.001246, :action_time=>0.001043, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
299
+ ~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
300
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
301
+ ~ {:dispatch_time=>0.000478, :action_time=>0.000305, :before_filters_time=>5.0e-06, :after_filters_time=>4.0e-06}
302
+ ~ Loaded TEST Environment...
303
+ ~ Compiling routes...
304
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
305
+ ~ Loaded TEST Environment...
306
+ ~ Compiling routes...
307
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
308
+ ~ Start: Thu May 29 10:20:01 +0300 2008
309
+ ~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
310
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
311
+ ~ {:action_time=>0.001046, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06, :dispatch_time=>0.001277}
312
+ ~ Start: Thu May 29 10:20:01 +0300 2008
313
+ ~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
314
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
315
+ ~ {:action_time=>0.000325, :before_filters_time=>6.0e-06, :after_filters_time=>4.0e-06, :dispatch_time=>0.000482}
316
+ ~ Loaded TEST Environment...
317
+ ~ Compiling routes...
318
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
319
+ ~ Loaded TEST Environment...
320
+ ~ Compiling routes...
321
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
322
+ ~ Start: Thu May 29 10:23:55 +0300 2008
323
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
324
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
325
+ ~ {:before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06, :dispatch_time=>0.001268, :action_time=>0.001038}
326
+ ~ Start: Thu May 29 10:23:55 +0300 2008
327
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
328
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
329
+ ~ {:before_filters_time=>5.0e-06, :after_filters_time=>6.0e-06, :dispatch_time=>0.000495, :action_time=>0.000315}
330
+ ~ Loaded TEST Environment...
331
+ ~ Compiling routes...
332
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
333
+ ~ Loaded TEST Environment...
334
+ ~ Compiling routes...
335
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
336
+ ~ Start: Thu May 29 10:25:21 +0300 2008
337
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
338
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
339
+ ~ {:dispatch_time=>0.001262, :before_filters_time=>8.0e-06, :after_filters_time=>8.0e-06, :action_time=>0.001033}
340
+ ~ Start: Thu May 29 10:25:21 +0300 2008
341
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
342
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
343
+ ~ {:dispatch_time=>0.000492, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000313}
344
+ ~ Loaded TEST Environment...
345
+ ~ Compiling routes...
346
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
347
+ ~ Loaded TEST Environment...
348
+ ~ Compiling routes...
349
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
350
+ ~ Start: Sat May 31 06:57:21 +0300 2008
351
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
352
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
353
+ ~ {:action_time=>0.001144, :dispatch_time=>0.001378, :before_filters_time=>9.0e-06, :after_filters_time=>7.0e-06}
354
+ ~ Start: Sat May 31 06:57:21 +0300 2008
355
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
356
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
357
+ ~ {:action_time=>0.000345, :dispatch_time=>0.000586, :before_filters_time=>5.0e-06, :after_filters_time=>6.0e-06}
358
+ ~ Loaded TEST Environment...
359
+ ~ Compiling routes...
360
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
361
+ ~ Loaded TEST Environment...
362
+ ~ Compiling routes...
363
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
364
+ ~ Start: Mon Jun 02 09:27:46 +0300 2008
365
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
366
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
367
+ ~ {:dispatch_time=>0.00151, :action_time=>0.00124, :before_filters_time=>8.0e-06, :after_filters_time=>9.0e-06}
368
+ ~ Start: Mon Jun 02 09:27:46 +0300 2008
369
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
370
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
371
+ ~ {:dispatch_time=>0.002164, :action_time=>0.001964, :before_filters_time=>9.0e-06, :after_filters_time=>7.0e-06}
372
+ ~ Loaded TEST Environment...
373
+ ~ Compiling routes...
374
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
375
+ ~ Loaded TEST Environment...
376
+ ~ Compiling routes...
377
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
378
+ ~ Start: Mon Jun 02 09:35:54 +0300 2008
379
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
380
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
381
+ ~ {:dispatch_time=>0.001803, :action_time=>0.001498, :before_filters_time=>9.0e-06, :after_filters_time=>7.0e-06}
382
+ ~ Start: Mon Jun 02 09:35:54 +0300 2008
383
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
384
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
385
+ ~ {:dispatch_time=>0.000565, :action_time=>0.000343, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
386
+ ~ Loaded TEST Environment...
387
+ ~ Compiling routes...
388
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
389
+ ~ Loaded TEST Environment...
390
+ ~ Compiling routes...
391
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
392
+ ~ Start: Mon Jun 02 09:38:24 +0300 2008
393
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
394
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
395
+ ~ {:dispatch_time=>0.001466, :action_time=>0.001165, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
396
+ ~ Start: Mon Jun 02 09:38:24 +0300 2008
397
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
398
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
399
+ ~ {:dispatch_time=>0.000596, :action_time=>0.000341, :before_filters_time=>6.0e-06, :after_filters_time=>7.0e-06}
400
+ ~ Loaded TEST Environment...
401
+ ~ Compiling routes...
402
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
403
+ ~ Loaded TEST Environment...
404
+ ~ Compiling routes...
405
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
406
+ ~ Start: Mon Jun 02 09:40:11 +0300 2008
407
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
408
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
409
+ ~ {:action_time=>0.001197, :dispatch_time=>0.001481, :before_filters_time=>9.0e-06, :after_filters_time=>8.0e-06}
410
+ ~ Start: Mon Jun 02 09:40:11 +0300 2008
411
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
412
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
413
+ ~ {:action_time=>0.000347, :dispatch_time=>0.000523, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
414
+ ~ Loaded TEST Environment...
415
+ ~ Compiling routes...
416
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
417
+ ~ Loaded TEST Environment...
418
+ ~ Compiling routes...
419
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
420
+ ~ Start: Mon Jun 02 11:56:21 +0300 2008
421
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
422
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
423
+ ~ {:action_time=>0.001279, :dispatch_time=>0.001537, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
424
+ ~ Start: Mon Jun 02 11:56:21 +0300 2008
425
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
426
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
427
+ ~ {:action_time=>0.000362, :dispatch_time=>0.00055, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
428
+ ~ Loaded TEST Environment...
429
+ ~ Compiling routes...
430
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
431
+ ~ Loaded TEST Environment...
432
+ ~ Compiling routes...
433
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
434
+ ~ Start: Mon Jun 02 12:05:33 +0300 2008
435
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
436
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
437
+ ~ {:action_time=>0.001112, :dispatch_time=>0.001414, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
438
+ ~ Start: Mon Jun 02 12:05:33 +0300 2008
439
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
440
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
441
+ ~ {:action_time=>0.000397, :dispatch_time=>0.000604, :before_filters_time=>6.0e-06, :after_filters_time=>7.0e-06}
442
+ ~ Loaded TEST Environment...
443
+ ~ Compiling routes...
444
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
445
+ ~ Loaded TEST Environment...
446
+ ~ Compiling routes...
447
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
448
+ ~ Start: Mon Jun 02 12:07:04 +0300 2008
449
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
450
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
451
+ ~ {:action_time=>0.001128, :dispatch_time=>0.001386, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
452
+ ~ Start: Mon Jun 02 12:07:04 +0300 2008
453
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
454
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
455
+ ~ {:action_time=>0.000418, :dispatch_time=>0.000592, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
456
+ ~ Loaded TEST Environment...
457
+ ~ Compiling routes...
458
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
459
+ ~ Loaded TEST Environment...
460
+ ~ Compiling routes...
461
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
462
+ ~ Start: Wed Jun 04 20:51:29 +0300 2008
463
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
464
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
465
+ ~ {:action_time=>0.001123, :dispatch_time=>0.001365, :before_filters_time=>8.0e-06, :after_filters_time=>8.0e-06}
466
+ ~ Start: Wed Jun 04 20:51:29 +0300 2008
467
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
468
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
469
+ ~ {:action_time=>0.000341, :dispatch_time=>0.000537, :before_filters_time=>5.0e-06, :after_filters_time=>6.0e-06}
470
+ ~ Loaded TEST Environment...
471
+ ~ Compiling routes...
472
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
473
+ ~ Loaded TEST Environment...
474
+ ~ Compiling routes...
475
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
476
+ ~ Start: Wed Jun 04 21:05:40 +0300 2008
477
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
478
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
479
+ ~ {:action_time=>0.001157, :dispatch_time=>0.0014, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
480
+ ~ Start: Wed Jun 04 21:05:40 +0300 2008
481
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
482
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
483
+ ~ {:action_time=>0.001872, :dispatch_time=>0.003743, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
484
+ ~ Loaded TEST Environment...
485
+ ~ Compiling routes...
486
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
487
+ ~ Loaded TEST Environment...
488
+ ~ Compiling routes...
489
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
490
+ ~ Start: Wed Jun 04 21:07:30 +0300 2008
491
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
492
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
493
+ ~ {:action_time=>0.001176, :dispatch_time=>0.001438, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
494
+ ~ Start: Wed Jun 04 21:07:30 +0300 2008
495
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
496
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
497
+ ~ {:action_time=>0.000512, :dispatch_time=>0.000683, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
498
+ ~ Loaded TEST Environment...
499
+ ~ Compiling routes...
500
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
501
+ ~ Loaded TEST Environment...
502
+ ~ Compiling routes...
503
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
504
+ ~ Start: Wed Jun 04 21:11:03 +0300 2008
505
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
506
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
507
+ ~ {:action_time=>0.001211, :dispatch_time=>0.001473, :before_filters_time=>9.0e-06, :after_filters_time=>7.0e-06}
508
+ ~ Start: Wed Jun 04 21:11:03 +0300 2008
509
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
510
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
511
+ ~ {:action_time=>0.000359, :dispatch_time=>0.000537, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
512
+ ~ Loaded TEST Environment...
513
+ ~ Compiling routes...
514
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
515
+ ~ Loaded TEST Environment...
516
+ ~ Compiling routes...
517
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
518
+ ~ Start: Wed Jun 04 21:12:16 +0300 2008
519
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
520
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
521
+ ~ {:action_time=>0.001138, :dispatch_time=>0.001377, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
522
+ ~ Start: Wed Jun 04 21:12:16 +0300 2008
523
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
524
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
525
+ ~ {:action_time=>0.000361, :dispatch_time=>0.000534, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
526
+ ~ Loaded TEST Environment...
527
+ ~ Compiling routes...
528
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
529
+ ~ Loaded TEST Environment...
530
+ ~ Compiling routes...
531
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
532
+ ~ Start: Wed Jun 04 21:18:20 +0300 2008
533
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
534
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
535
+ ~ {:action_time=>0.002772, :dispatch_time=>0.003092, :before_filters_time=>1.4e-05, :after_filters_time=>8.0e-06}
536
+ ~ Start: Wed Jun 04 21:18:20 +0300 2008
537
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
538
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
539
+ ~ {:action_time=>0.000481, :dispatch_time=>0.000708, :before_filters_time=>7.0e-06, :after_filters_time=>9.0e-06}
540
+ ~ Loaded TEST Environment...
541
+ ~ Compiling routes...
542
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
543
+ ~ Loaded TEST Environment...
544
+ ~ Compiling routes...
545
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
546
+ ~ Start: Wed Jun 04 21:19:00 +0300 2008
547
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
548
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
549
+ ~ {:action_time=>0.001135, :dispatch_time=>0.001376, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
550
+ ~ Start: Wed Jun 04 21:19:00 +0300 2008
551
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
552
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
553
+ ~ {:action_time=>0.000346, :dispatch_time=>0.000508, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
554
+ ~ Loaded TEST Environment...
555
+ ~ Compiling routes...
556
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
557
+ ~ Loaded TEST Environment...
558
+ ~ Compiling routes...
559
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
560
+ ~ Start: Wed Jun 04 21:23:12 +0300 2008
561
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
562
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
563
+ ~ {:action_time=>0.001147, :dispatch_time=>0.001396, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
564
+ ~ Start: Wed Jun 04 21:23:12 +0300 2008
565
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
566
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
567
+ ~ {:action_time=>0.002813, :dispatch_time=>0.003667, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
568
+ ~ Loaded TEST Environment...
569
+ ~ Compiling routes...
570
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
571
+ ~ Loaded TEST Environment...
572
+ ~ Compiling routes...
573
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
574
+ ~ Start: Wed Jun 04 21:33:04 +0300 2008
575
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
576
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
577
+ ~ {:dispatch_time=>0.001458, :action_time=>0.001209, :before_filters_time=>9.0e-06, :after_filters_time=>8.0e-06}
578
+ ~ Start: Wed Jun 04 21:33:04 +0300 2008
579
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
580
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
581
+ ~ {:dispatch_time=>0.000486, :action_time=>0.000332, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
582
+ ~ Loaded TEST Environment...
583
+ ~ Compiling routes...
584
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
585
+ ~ Loaded TEST Environment...
586
+ ~ Compiling routes...
587
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
588
+ ~ Start: Sat Jun 21 01:38:22 +0300 2008
589
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
590
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
591
+ ~ {:action_time=>0.001109, :dispatch_time=>0.001357, :before_filters_time=>1.0e-05, :after_filters_time=>6.0e-06}
592
+ ~ Start: Sat Jun 21 01:38:22 +0300 2008
593
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
594
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
595
+ ~ {:action_time=>0.00034, :dispatch_time=>0.000562, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
596
+ ~ Loaded TEST Environment...
597
+ ~ Compiling routes...
598
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
599
+ ~ Loaded TEST Environment...
600
+ ~ Compiling routes...
601
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
602
+ ~ Start: Tue Jun 24 23:57:38 +0300 2008
603
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
604
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
605
+ ~ {:dispatch_time=>0.001255, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000999}
606
+ ~ Start: Tue Jun 24 23:57:38 +0300 2008
607
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
608
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
609
+ ~ {:dispatch_time=>0.000451, :before_filters_time=>5.0e-06, :after_filters_time=>4.0e-06, :action_time=>0.000247}
610
+ ~ Loaded TEST Environment...
611
+ ~ Compiling routes...
612
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
613
+ ~ Loaded TEST Environment...
614
+ ~ Compiling routes...
615
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
616
+ ~ Start: Wed Jun 25 01:35:07 +0300 2008
617
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
618
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
619
+ ~ {:dispatch_time=>0.001269, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.001012}
620
+ ~ Start: Wed Jun 25 01:35:07 +0300 2008
621
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
622
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
623
+ ~ {:dispatch_time=>0.000479, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000322}
624
+ ~ Loaded TEST Environment...
625
+ ~ Compiling routes...
626
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
627
+ ~ Loaded TEST Environment...
628
+ ~ Compiling routes...
629
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
630
+ ~ Start: Wed Jun 25 01:35:56 +0300 2008
631
+ ~ Routed to: {:format=>nil, :action=>"bar", :id=>"54", :controller=>"foo"}
632
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
633
+ ~ {:before_filters_time=>1.4e-05, :after_filters_time=>1.2e-05, :action_time=>0.001245, :dispatch_time=>0.001624}
634
+ ~ Start: Wed Jun 25 01:35:56 +0300 2008
635
+ ~ Routed to: {:format=>nil, :action=>"bar", :id=>"54", :controller=>"foo"}
636
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
637
+ ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.0e-05, :action_time=>0.000398, :dispatch_time=>0.0007}
638
+ ~ Loaded TEST Environment...
639
+ ~ Compiling routes...
640
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
641
+ ~ Loaded TEST Environment...
642
+ ~ Compiling routes...
643
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
644
+ ~ Started request handling: Wed Jun 25 01:56:28 +0300 2008
645
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
646
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
647
+ ~ {:dispatch_time=>0.001258, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.001002}
648
+ ~ Started request handling: Wed Jun 25 01:56:28 +0300 2008
649
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
650
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
651
+ ~ {:dispatch_time=>0.000448, :before_filters_time=>7.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000265}
652
+ ~ Loaded TEST Environment...
653
+ ~ Compiling routes...
654
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
655
+ ~ Loaded TEST Environment...
656
+ ~ Compiling routes...
657
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
658
+ ~ Started request handling: Wed Jun 25 01:57:17 +0300 2008
659
+ ~ Routed to: {:format=>nil, :action=>"bar", :id=>"54", :controller=>"foo"}
660
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
661
+ ~ {:before_filters_time=>1.7e-05, :after_filters_time=>1.1e-05, :action_time=>0.001422, :dispatch_time=>0.001778}
662
+ ~ Started request handling: Wed Jun 25 01:57:17 +0300 2008
663
+ ~ Routed to: {:format=>nil, :action=>"bar", :id=>"54", :controller=>"foo"}
664
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
665
+ ~ {:before_filters_time=>1.0e-05, :after_filters_time=>9.0e-06, :action_time=>0.000389, :dispatch_time=>0.000653}
666
+ ~ Loaded TEST Environment...
667
+ ~ Compiling routes...
668
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
669
+ ~ Loaded TEST Environment...
670
+ ~ Compiling routes...
671
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
672
+ ~ Loaded TEST Environment...
673
+ ~ Compiling routes...
674
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
675
+ ~ Loaded TEST Environment...
676
+ ~ Compiling routes...
677
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
678
+ ~ Loaded TEST Environment...
679
+ ~ Compiling routes...
680
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
681
+ ~ Loaded TEST Environment...
682
+ ~ Compiling routes...
683
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
684
+ ~ Loaded TEST Environment...
685
+ ~ Compiling routes...
686
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
687
+ ~ Loaded TEST Environment...
688
+ ~ Compiling routes...
689
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
690
+ ~ Loaded TEST Environment...
691
+ ~ Compiling routes...
692
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
693
+ ~ Loaded TEST Environment...
694
+ ~ Compiling routes...
695
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
696
+ ~ Loaded TEST Environment...
697
+ ~ Compiling routes...
698
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
699
+ ~ Loaded TEST Environment...
700
+ ~ Compiling routes...
701
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
702
+ ~ Started request handling: Wed Jun 25 02:08:39 +0300 2008
703
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
704
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
705
+ ~ {:dispatch_time=>0.001355, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.00102}
706
+ ~ Started request handling: Wed Jun 25 02:08:39 +0300 2008
707
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
708
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
709
+ ~ {:dispatch_time=>0.000428, :before_filters_time=>7.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000253}
710
+ ~ Loaded TEST Environment...
711
+ ~ Compiling routes...
712
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
713
+ ~ Loaded TEST Environment...
714
+ ~ Compiling routes...
715
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
716
+ ~ Started request handling: Wed Jun 25 02:18:42 +0300 2008
717
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
718
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
719
+ ~ {:dispatch_time=>0.001243, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000989}
720
+ ~ Started request handling: Wed Jun 25 02:18:42 +0300 2008
721
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
722
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
723
+ ~ {:dispatch_time=>0.000476, :before_filters_time=>6.0e-06, :after_filters_time=>4.0e-06, :action_time=>0.000258}
724
+ ~ Loaded TEST Environment...
725
+ ~ Compiling routes...
726
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
727
+ ~ Loaded TEST Environment...
728
+ ~ Compiling routes...
729
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
730
+ ~ Started request handling: Wed Jun 25 02:19:32 +0300 2008
731
+ ~ Routed to: {:format=>nil, :action=>"bar", :id=>"54", :controller=>"foo"}
732
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
733
+ ~ {:before_filters_time=>1.6e-05, :after_filters_time=>1.1e-05, :action_time=>0.001316, :dispatch_time=>0.001656}
734
+ ~ Started request handling: Wed Jun 25 02:19:32 +0300 2008
735
+ ~ Routed to: {:format=>nil, :action=>"bar", :id=>"54", :controller=>"foo"}
736
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
737
+ ~ {:before_filters_time=>1.0e-05, :after_filters_time=>9.0e-06, :action_time=>0.000385, :dispatch_time=>0.000616}
738
+ ~ Loaded TEST Environment...
739
+ ~ Compiling routes...
740
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
741
+ ~ Loaded TEST Environment...
742
+ ~ Compiling routes...
743
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
744
+ ~ Started request handling: Wed Jun 25 02:23:13 +0300 2008
745
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
746
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
747
+ ~ {:dispatch_time=>0.001256, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.001}
748
+ ~ Started request handling: Wed Jun 25 02:23:13 +0300 2008
749
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
750
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
751
+ ~ {:dispatch_time=>0.000488, :before_filters_time=>6.0e-06, :after_filters_time=>4.0e-06, :action_time=>0.00026}
752
+ ~ Loaded TEST Environment...
753
+ ~ Compiling routes...
754
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
755
+ ~ Loaded TEST Environment...
756
+ ~ Compiling routes...
757
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
758
+ ~ Started request handling: Wed Jun 25 02:24:05 +0300 2008
759
+ ~ Routed to: {:format=>nil, :action=>"bar", :id=>"54", :controller=>"foo"}
760
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
761
+ ~ {:before_filters_time=>1.5e-05, :after_filters_time=>1.2e-05, :action_time=>0.001276, :dispatch_time=>0.001626}
762
+ ~ Started request handling: Wed Jun 25 02:24:05 +0300 2008
763
+ ~ Routed to: {:format=>nil, :action=>"bar", :id=>"54", :controller=>"foo"}
764
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
765
+ ~ {:before_filters_time=>1.9e-05, :after_filters_time=>1.0e-05, :action_time=>0.000398, :dispatch_time=>0.000652}
766
+ ~ Loaded TEST Environment...
767
+ ~ Compiling routes...
768
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
769
+ ~ Loaded TEST Environment...
770
+ ~ Compiling routes...
771
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
772
+ ~ Started request handling: Wed Jun 25 04:16:13 +0300 2008
773
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
774
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
775
+ ~ {:dispatch_time=>0.001267, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.00101}
776
+ ~ Started request handling: Wed Jun 25 04:16:13 +0300 2008
777
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
778
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
779
+ ~ {:dispatch_time=>0.000422, :before_filters_time=>7.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000263}
780
+ ~ Loaded TEST Environment...
781
+ ~ Compiling routes...
782
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
783
+ ~ Loaded TEST Environment...
784
+ ~ Compiling routes...
785
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
786
+ ~ Started request handling: Wed Jun 25 04:21:27 +0300 2008
787
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
788
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
789
+ ~ {:dispatch_time=>0.001244, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.001002}
790
+ ~ Started request handling: Wed Jun 25 04:21:27 +0300 2008
791
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
792
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
793
+ ~ {:dispatch_time=>0.000554, :before_filters_time=>7.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000307}
794
+ ~ Loaded TEST Environment...
795
+ ~ Compiling routes...
796
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
797
+ ~ Loaded TEST Environment...
798
+ ~ Compiling routes...
799
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
800
+ ~ Started request handling: Wed Jun 25 04:28:57 +0300 2008
801
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
802
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
803
+ ~ {:dispatch_time=>0.001282, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.001037}
804
+ ~ Started request handling: Wed Jun 25 04:28:57 +0300 2008
805
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
806
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
807
+ ~ {:dispatch_time=>0.000448, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000256}
808
+ ~ Loaded TEST Environment...
809
+ ~ Compiling routes...
810
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
811
+ ~ Loaded TEST Environment...
812
+ ~ Compiling routes...
813
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
814
+ ~ Started request handling: Wed Jun 25 04:30:07 +0300 2008
815
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
816
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
817
+ ~ {:dispatch_time=>0.001248, :before_filters_time=>8.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.001005}
818
+ ~ Started request handling: Wed Jun 25 04:30:07 +0300 2008
819
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
820
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
821
+ ~ {:dispatch_time=>0.000426, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000258}
822
+ ~ Loaded TEST Environment...
823
+ ~ Compiling routes...
824
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
825
+ ~ Loaded TEST Environment...
826
+ ~ Compiling routes...
827
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
828
+ ~ Started request handling: Wed Jun 25 04:31:34 +0300 2008
829
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
830
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
831
+ ~ {:dispatch_time=>0.001282, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.001034}
832
+ ~ Started request handling: Wed Jun 25 04:31:34 +0300 2008
833
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
834
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
835
+ ~ {:dispatch_time=>0.000419, :before_filters_time=>5.0e-06, :after_filters_time=>4.0e-06, :action_time=>0.000257}
836
+ ~ Loaded TEST Environment...
837
+ ~ Compiling routes...
838
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
839
+ ~ Loaded TEST Environment...
840
+ ~ Compiling routes...
841
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
842
+ ~ Started request handling: Wed Jun 25 04:34:27 +0300 2008
843
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
844
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
845
+ ~ {:dispatch_time=>0.001272, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.001019}
846
+ ~ Started request handling: Wed Jun 25 04:34:27 +0300 2008
847
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
848
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
849
+ ~ {:dispatch_time=>0.000469, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.00026}
850
+ ~ Loaded TEST Environment...
851
+ ~ Compiling routes...
852
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
853
+ ~ Loaded TEST Environment...
854
+ ~ Compiling routes...
855
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
856
+ ~ Started request handling: Wed Jun 25 04:35:57 +0300 2008
857
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
858
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
859
+ ~ {:dispatch_time=>0.00133, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.001061}
860
+ ~ Started request handling: Wed Jun 25 04:35:57 +0300 2008
861
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
862
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
863
+ ~ {:dispatch_time=>0.000447, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000259}
864
+ ~ Loaded TEST Environment...
865
+ ~ Compiling routes...
866
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
867
+ ~ Loaded TEST Environment...
868
+ ~ Compiling routes...
869
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
870
+ ~ Started request handling: Wed Jun 25 04:38:42 +0300 2008
871
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
872
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
873
+ ~ {:dispatch_time=>0.001269, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.00102}
874
+ ~ Started request handling: Wed Jun 25 04:38:42 +0300 2008
875
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
876
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
877
+ ~ {:dispatch_time=>0.000442, :before_filters_time=>8.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000261}
878
+ ~ Loaded TEST Environment...
879
+ ~ Compiling routes...
880
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
881
+ ~ Loaded TEST Environment...
882
+ ~ Compiling routes...
883
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
884
+ ~ Started request handling: Wed Jun 25 04:40:47 +0300 2008
885
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
886
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
887
+ ~ {:dispatch_time=>0.001283, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.001022}
888
+ ~ Started request handling: Wed Jun 25 04:40:47 +0300 2008
889
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
890
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
891
+ ~ {:dispatch_time=>0.003033, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.00215}
892
+ ~ Loaded TEST Environment...
893
+ ~ Compiling routes...
894
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
895
+ ~ Loaded TEST Environment...
896
+ ~ Compiling routes...
897
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
898
+ ~ Started request handling: Wed Jun 25 04:42:03 +0300 2008
899
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
900
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
901
+ ~ {:dispatch_time=>0.00125, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.001007}
902
+ ~ Started request handling: Wed Jun 25 04:42:03 +0300 2008
903
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
904
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
905
+ ~ {:dispatch_time=>0.001522, :before_filters_time=>7.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000739}
906
+ ~ Loaded TEST Environment...
907
+ ~ Compiling routes...
908
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
909
+ ~ Loaded TEST Environment...
910
+ ~ Compiling routes...
911
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
912
+ ~ Started request handling: Wed Jun 25 04:43:15 +0300 2008
913
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
914
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
915
+ ~ {:dispatch_time=>0.001256, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.001008}
916
+ ~ Started request handling: Wed Jun 25 04:43:15 +0300 2008
917
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
918
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
919
+ ~ {:dispatch_time=>0.003053, :before_filters_time=>7.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.001957}
920
+ ~ Loaded TEST Environment...
921
+ ~ Compiling routes...
922
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
923
+ ~ Loaded TEST Environment...
924
+ ~ Compiling routes...
925
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
926
+ ~ Started request handling: Wed Jun 25 04:47:43 +0300 2008
927
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
928
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
929
+ ~ {:dispatch_time=>0.001249, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.001005}
930
+ ~ Started request handling: Wed Jun 25 04:47:43 +0300 2008
931
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
932
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
933
+ ~ {:dispatch_time=>0.00295, :before_filters_time=>8.9e-05, :after_filters_time=>8.0e-06, :action_time=>0.001992}
934
+ ~ Loaded TEST Environment...
935
+ ~ Compiling routes...
936
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
937
+ ~ Loaded TEST Environment...
938
+ ~ Compiling routes...
939
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
940
+ ~ Started request handling: Wed Jun 25 04:48:01 +0300 2008
941
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
942
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
943
+ ~ {:dispatch_time=>0.001269, :before_filters_time=>8.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.001019}
944
+ ~ Started request handling: Wed Jun 25 04:48:01 +0300 2008
945
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
946
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
947
+ ~ {:dispatch_time=>0.000483, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000316}
948
+ ~ Loaded TEST Environment...
949
+ ~ Compiling routes...
950
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
951
+ ~ Loaded TEST Environment...
952
+ ~ Compiling routes...
953
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
954
+ ~ Started request handling: Wed Jun 25 04:48:51 +0300 2008
955
+ ~ Routed to: {:format=>nil, :action=>"bar", :id=>"54", :controller=>"foo"}
956
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
957
+ ~ {:before_filters_time=>1.5e-05, :after_filters_time=>1.2e-05, :action_time=>0.001247, :dispatch_time=>0.001645}
958
+ ~ Started request handling: Wed Jun 25 04:48:51 +0300 2008
959
+ ~ Routed to: {:format=>nil, :action=>"bar", :id=>"54", :controller=>"foo"}
960
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
961
+ ~ {:before_filters_time=>1.0e-05, :after_filters_time=>9.0e-06, :action_time=>0.000378, :dispatch_time=>0.000611}
962
+ ~ Loaded TEST Environment...
963
+ ~ Compiling routes...
964
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
965
+ ~ Loaded TEST Environment...
966
+ ~ Compiling routes...
967
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
968
+ ~ Started request handling: Wed Jun 25 04:55:33 +0300 2008
969
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
970
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
971
+ ~ {:dispatch_time=>0.001247, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.001006}
972
+ ~ Started request handling: Wed Jun 25 04:55:33 +0300 2008
973
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
974
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
975
+ ~ {:dispatch_time=>0.000478, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000258}
976
+ ~ Loaded TEST Environment...
977
+ ~ Compiling routes...
978
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
979
+ ~ Loaded TEST Environment...
980
+ ~ Compiling routes...
981
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
982
+ ~ Started request handling: Wed Jun 25 04:56:22 +0300 2008
983
+ ~ Routed to: {:format=>nil, :action=>"bar", :id=>"54", :controller=>"foo"}
984
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
985
+ ~ {:before_filters_time=>1.5e-05, :after_filters_time=>1.2e-05, :action_time=>0.00123, :dispatch_time=>0.00157}
986
+ ~ Started request handling: Wed Jun 25 04:56:22 +0300 2008
987
+ ~ Routed to: {:format=>nil, :action=>"bar", :id=>"54", :controller=>"foo"}
988
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
989
+ ~ {:before_filters_time=>1.0e-05, :after_filters_time=>9.0e-06, :action_time=>0.000377, :dispatch_time=>0.000603}
990
+ ~ Loaded TEST Environment...
991
+ ~ Compiling routes...
992
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
993
+ ~ Loaded TEST Environment...
994
+ ~ Compiling routes...
995
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
996
+ ~ Started request handling: Wed Jun 25 05:12:42 +0300 2008
997
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
998
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
999
+ ~ {:before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.001007, :dispatch_time=>0.001269}
1000
+ ~ Started request handling: Wed Jun 25 05:12:42 +0300 2008
1001
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1002
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1003
+ ~ {:before_filters_time=>7.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000318, :dispatch_time=>0.000501}
1004
+ ~ Loaded TEST Environment...
1005
+ ~ Compiling routes...
1006
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1007
+ ~ Loaded TEST Environment...
1008
+ ~ Compiling routes...
1009
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1010
+ ~ Started request handling: Thu Jun 26 02:31:30 +0300 2008
1011
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1012
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1013
+ ~ {:before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.00097, :dispatch_time=>0.001205}
1014
+ ~ Started request handling: Thu Jun 26 02:31:30 +0300 2008
1015
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1016
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1017
+ ~ {:before_filters_time=>5.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000334, :dispatch_time=>0.000488}
1018
+ ~ Loaded TEST Environment...
1019
+ ~ Compiling routes...
1020
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1021
+ ~ Loaded TEST Environment...
1022
+ ~ Compiling routes...
1023
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1024
+ ~ Started request handling: Thu Jun 26 02:33:50 +0300 2008
1025
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1026
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1027
+ ~ {:before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.001152, :dispatch_time=>0.001445}
1028
+ ~ Started request handling: Thu Jun 26 02:33:50 +0300 2008
1029
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1030
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1031
+ ~ {:before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.00026, :dispatch_time=>0.000442}
1032
+ ~ Loaded TEST Environment...
1033
+ ~ Compiling routes...
1034
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1035
+ ~ Loaded TEST Environment...
1036
+ ~ Compiling routes...
1037
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1038
+ ~ Started request handling: Thu Jun 26 17:58:22 +0300 2008
1039
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1040
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1041
+ ~ {:before_filters_time=>9.0e-06, :after_filters_time=>7.0e-06, :action_time=>0.001189, :dispatch_time=>0.001485}
1042
+ ~ Started request handling: Thu Jun 26 17:58:22 +0300 2008
1043
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1044
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1045
+ ~ {:before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000262, :dispatch_time=>0.000452}
1046
+ ~ Loaded TEST Environment...
1047
+ ~ Compiling routes...
1048
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1049
+ ~ Loaded TEST Environment...
1050
+ ~ Compiling routes...
1051
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1052
+ ~ Started request handling: Sun Jun 29 20:23:57 +0300 2008
1053
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
1054
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1055
+ ~ {:action_time=>0.001082, :after_filters_time=>1.5e-05, :dispatch_time=>0.001325, :before_filters_time=>1.7e-05}
1056
+ ~ Started request handling: Sun Jun 29 20:23:57 +0300 2008
1057
+ ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
1058
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1059
+ ~ {:action_time=>0.000279, :after_filters_time=>6.0e-06, :dispatch_time=>0.000484, :before_filters_time=>7.0e-06}
1060
+ ~ Loaded TEST Environment...
1061
+ ~ Compiling routes...
1062
+ ~ Compiling routes...
1063
+ ~ Could not load /Users/antares/dev/opensource/merb-core/spec/private/dispatch/fixture/config/router.rb:
1064
+
1065
+ undefined method `prepare' for Merb::Router:Class - (NoMethodError)
1066
+
1067
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/fixture/config/router.rb:23
1068
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/bootloader.rb:356:in `load'
1069
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/bootloader.rb:356:in `load_file'
1070
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/bootloader.rb:453:in `load_classes_with_requirements'
1071
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/bootloader.rb:450:in `each'
1072
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/bootloader.rb:450:in `load_classes_with_requirements'
1073
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/bootloader.rb:376:in `load_classes'
1074
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/bootloader.rb:346:in `run'
1075
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/vendor/facets/dictionary.rb:268:in `each'
1076
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/vendor/facets/dictionary.rb:268:in `each'
1077
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/bootloader.rb:344:in `run'
1078
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/bootloader.rb:65:in `run'
1079
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/server.rb:51:in `start'
1080
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core.rb:87:in `start'
1081
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/dispatch_spec.rb:4
1082
+ /usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:14:in `load'
1083
+ /usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:14:in `load_files'
1084
+ /usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:13:in `each'
1085
+ /usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:13:in `load_files'
1086
+ /usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/options.rb:98:in `run_examples'
1087
+ /usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/command_line.rb:19:in `run'
1088
+ /usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/bin/spec:4
1089
+ /opt/local/bin/spec:19:in `load'
1090
+ /opt/local/bin/spec:19
1091
+ ~ Loaded TEST Environment...
1092
+ ~ Compiling routes...
1093
+ ~ Compiling routes...
1094
+ ~ Could not load /Users/antares/dev/opensource/merb-core/spec/private/dispatch/fixture/config/router.rb:
1095
+
1096
+ undefined method `prepare' for Merb::Router:Class - (NoMethodError)
1097
+
1098
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/fixture/config/router.rb:23
1099
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/bootloader.rb:356:in `load'
1100
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/bootloader.rb:356:in `load_file'
1101
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/bootloader.rb:453:in `load_classes_with_requirements'
1102
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/bootloader.rb:450:in `each'
1103
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/bootloader.rb:450:in `load_classes_with_requirements'
1104
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/bootloader.rb:376:in `load_classes'
1105
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/bootloader.rb:346:in `run'
1106
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/vendor/facets/dictionary.rb:268:in `each'
1107
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/vendor/facets/dictionary.rb:268:in `each'
1108
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/bootloader.rb:344:in `run'
1109
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/bootloader.rb:65:in `run'
1110
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core/server.rb:51:in `start'
1111
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/../../../lib/merb-core.rb:87:in `start'
1112
+ /Users/antares/dev/opensource/merb-core/spec/private/dispatch/route_params_spec.rb:4
1113
+ /usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:14:in `load'
1114
+ /usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:14:in `load_files'
1115
+ /usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:13:in `each'
1116
+ /usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:13:in `load_files'
1117
+ /usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/options.rb:98:in `run_examples'
1118
+ /usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/command_line.rb:19:in `run'
1119
+ /usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/bin/spec:4
1120
+ /opt/local/bin/spec:19:in `load'
1121
+ /opt/local/bin/spec:19
1122
+ ~ Loaded TEST Environment...
1123
+ ~ Compiling routes...
1124
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1125
+ ~ Loaded TEST Environment...
1126
+ ~ Compiling routes...
1127
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1128
+ ~ Started request handling: Wed Jul 16 21:45:55 +0300 2008
1129
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1130
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1131
+ ~ {:dispatch_time=>0.001422, :before_filters_time=>1.6e-05, :action_time=>0.001173, :after_filters_time=>1.5e-05}
1132
+ ~ Started request handling: Wed Jul 16 21:45:55 +0300 2008
1133
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1134
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1135
+ ~ {:dispatch_time=>0.000478, :before_filters_time=>6.0e-06, :action_time=>0.000261, :after_filters_time=>5.0e-06}
1136
+ ~ Loaded TEST Environment...
1137
+ ~ Compiling routes...
1138
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1139
+ ~ Loaded TEST Environment...
1140
+ ~ Compiling routes...
1141
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1142
+ ~ Started request handling: Wed Jul 16 21:47:27 +0300 2008
1143
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1144
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1145
+ ~ {:dispatch_time=>0.001778, :before_filters_time=>2.0e-05, :action_time=>0.001449, :after_filters_time=>1.6e-05}
1146
+ ~ Started request handling: Wed Jul 16 21:47:27 +0300 2008
1147
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1148
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1149
+ ~ {:dispatch_time=>0.000547, :before_filters_time=>8.0e-06, :action_time=>0.000311, :after_filters_time=>6.0e-06}
1150
+ ~ Loaded TEST Environment...
1151
+ ~ Compiling routes...
1152
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1153
+ ~ Loaded TEST Environment...
1154
+ ~ Compiling routes...
1155
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1156
+ ~ Started request handling: Wed Jul 16 22:14:46 +0300 2008
1157
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1158
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1159
+ ~ {:dispatch_time=>0.001395, :before_filters_time=>1.6e-05, :action_time=>0.001102, :after_filters_time=>1.4e-05}
1160
+ ~ Started request handling: Wed Jul 16 22:14:46 +0300 2008
1161
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1162
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1163
+ ~ {:dispatch_time=>0.000473, :before_filters_time=>6.0e-06, :action_time=>0.000258, :after_filters_time=>5.0e-06}
1164
+ ~ Loaded TEST Environment...
1165
+ ~ Compiling routes...
1166
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1167
+ ~ Loaded TEST Environment...
1168
+ ~ Compiling routes...
1169
+ ~ Compiling routes...
1170
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1171
+ ~ Started request handling: Wed Jul 16 22:17:38 +0300 2008
1172
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1173
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1174
+ ~ {:dispatch_time=>0.001477, :before_filters_time=>1.7e-05, :action_time=>0.001226, :after_filters_time=>1.6e-05}
1175
+ ~ Started request handling: Wed Jul 16 22:17:38 +0300 2008
1176
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1177
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1178
+ ~ {:dispatch_time=>0.000547, :before_filters_time=>6.0e-06, :action_time=>0.000318, :after_filters_time=>6.0e-06}
1179
+ ~ Loaded TEST Environment...
1180
+ ~ Compiling routes...
1181
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1182
+ ~ Loaded TEST Environment...
1183
+ ~ Compiling routes...
1184
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1185
+ ~ Started request handling: Wed Jul 16 23:23:06 +0300 2008
1186
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1187
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1188
+ ~ {:dispatch_time=>0.001391, :before_filters_time=>1.7e-05, :action_time=>0.001133, :after_filters_time=>1.5e-05}
1189
+ ~ Started request handling: Wed Jul 16 23:23:06 +0300 2008
1190
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1191
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1192
+ ~ {:dispatch_time=>0.000498, :before_filters_time=>6.0e-06, :action_time=>0.000262, :after_filters_time=>5.0e-06}
1193
+ ~ Loaded TEST Environment...
1194
+ ~ Compiling routes...
1195
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1196
+ ~ Loaded TEST Environment...
1197
+ ~ Compiling routes...
1198
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1199
+ ~ Started request handling: Thu Jul 17 01:14:07 +0300 2008
1200
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1201
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1202
+ ~ {:dispatch_time=>0.00141, :before_filters_time=>1.7e-05, :action_time=>0.001153, :after_filters_time=>1.4e-05}
1203
+ ~ Started request handling: Thu Jul 17 01:14:07 +0300 2008
1204
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1205
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1206
+ ~ {:dispatch_time=>0.000577, :before_filters_time=>6.0e-06, :action_time=>0.000281, :after_filters_time=>5.0e-06}
1207
+ ~ Loaded TEST Environment...
1208
+ ~ Compiling routes...
1209
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1210
+ ~ Loaded TEST Environment...
1211
+ ~ Compiling routes...
1212
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1213
+ ~ Started request handling: Thu Jul 17 02:02:26 +0300 2008
1214
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1215
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1216
+ ~ {:dispatch_time=>0.001439, :before_filters_time=>1.6e-05, :action_time=>0.001184, :after_filters_time=>5.7e-05}
1217
+ ~ Started request handling: Thu Jul 17 02:02:26 +0300 2008
1218
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1219
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1220
+ ~ {:dispatch_time=>0.000501, :before_filters_time=>6.0e-06, :action_time=>0.000262, :after_filters_time=>5.0e-06}
1221
+ ~ Loaded TEST Environment...
1222
+ ~ Compiling routes...
1223
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1224
+ ~ Loaded TEST Environment...
1225
+ ~ Compiling routes...
1226
+ ~ Compiling routes...
1227
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1228
+ ~ Started request handling: Thu Jul 17 02:33:53 +0300 2008
1229
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1230
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1231
+ ~ {:dispatch_time=>0.006098, :before_filters_time=>2.0e-05, :action_time=>0.005814, :after_filters_time=>3.4e-05}
1232
+ ~ Started request handling: Thu Jul 17 02:33:53 +0300 2008
1233
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1234
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1235
+ ~ {:dispatch_time=>0.00104, :before_filters_time=>9.0e-06, :action_time=>0.00035, :after_filters_time=>6.0e-06}
1236
+ ~ Loaded TEST Environment...
1237
+ ~ Compiling routes...
1238
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1239
+ ~ Loaded TEST Environment...
1240
+ ~ Compiling routes...
1241
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1242
+ ~ Loaded TEST Environment...
1243
+ ~ Compiling routes...
1244
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1245
+ ~ Loaded TEST Environment...
1246
+ ~ Compiling routes...
1247
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1248
+ ~ Started request handling: Thu Jul 17 02:53:43 +0300 2008
1249
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1250
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1251
+ ~ {:dispatch_time=>0.001388, :before_filters_time=>1.7e-05, :action_time=>0.001115, :after_filters_time=>1.4e-05}
1252
+ ~ Started request handling: Thu Jul 17 02:53:43 +0300 2008
1253
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1254
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1255
+ ~ {:dispatch_time=>0.000445, :before_filters_time=>6.0e-06, :action_time=>0.000264, :after_filters_time=>6.0e-06}
1256
+ ~ Loaded TEST Environment...
1257
+ ~ Compiling routes...
1258
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1259
+ ~ Loaded TEST Environment...
1260
+ ~ Compiling routes...
1261
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1262
+ ~ Started request handling: Fri Jul 18 00:47:28 +0300 2008
1263
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1264
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1265
+ ~ {:dispatch_time=>0.001593, :before_filters_time=>1.9e-05, :action_time=>0.001318, :after_filters_time=>1.5e-05}
1266
+ ~ Started request handling: Fri Jul 18 00:47:28 +0300 2008
1267
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1268
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1269
+ ~ {:dispatch_time=>0.00044, :before_filters_time=>8.0e-06, :action_time=>0.000268, :after_filters_time=>5.0e-06}
1270
+ ~ Loaded TEST Environment...
1271
+ ~ Compiling routes...
1272
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1273
+ ~ Loaded TEST Environment...
1274
+ ~ Compiling routes...
1275
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1276
+ ~ Started request handling: Fri Jul 18 00:50:33 +0300 2008
1277
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1278
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1279
+ ~ {:dispatch_time=>0.001746, :before_filters_time=>1.9e-05, :action_time=>0.00146, :after_filters_time=>1.5e-05}
1280
+ ~ Started request handling: Fri Jul 18 00:50:33 +0300 2008
1281
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1282
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1283
+ ~ {:dispatch_time=>0.000455, :before_filters_time=>6.0e-06, :action_time=>0.000275, :after_filters_time=>6.0e-06}
1284
+ ~ Loaded TEST Environment...
1285
+ ~ Compiling routes...
1286
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1287
+ ~ Loaded TEST Environment...
1288
+ ~ Compiling routes...
1289
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1290
+ ~ Started request handling: Fri Jul 18 04:02:49 +0300 2008
1291
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1292
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1293
+ ~ {:dispatch_time=>0.001539, :before_filters_time=>1.8e-05, :action_time=>0.001183, :after_filters_time=>1.5e-05}
1294
+ ~ Started request handling: Fri Jul 18 04:02:49 +0300 2008
1295
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1296
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1297
+ ~ {:dispatch_time=>0.000642, :before_filters_time=>7.0e-06, :action_time=>0.000287, :after_filters_time=>7.0e-06}
1298
+ ~ Loaded TEST Environment...
1299
+ ~ Compiling routes...
1300
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1301
+ ~ Loaded TEST Environment...
1302
+ ~ Compiling routes...
1303
+ ~ Compiling routes...
1304
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1305
+ ~ Started request handling: Fri Jul 18 04:30:48 +0300 2008
1306
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1307
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1308
+ ~ {:dispatch_time=>0.001488, :before_filters_time=>1.8e-05, :action_time=>0.001197, :after_filters_time=>1.5e-05}
1309
+ ~ Started request handling: Fri Jul 18 04:30:48 +0300 2008
1310
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1311
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1312
+ ~ {:dispatch_time=>0.001, :before_filters_time=>9.0e-06, :action_time=>0.000313, :after_filters_time=>6.0e-06}
1313
+ ~ Loaded TEST Environment...
1314
+ ~ Compiling routes...
1315
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1316
+ ~ Loaded TEST Environment...
1317
+ ~ Compiling routes...
1318
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1319
+ ~ Started request handling: Fri Jul 18 04:50:05 +0300 2008
1320
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1321
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1322
+ ~ {:dispatch_time=>0.001376, :before_filters_time=>1.7e-05, :action_time=>0.001122, :after_filters_time=>1.5e-05}
1323
+ ~ Started request handling: Fri Jul 18 04:50:05 +0300 2008
1324
+ ~ Routed to: {:format=>nil, :controller=>"foo", :action=>"bar", :id=>"54"}
1325
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1326
+ ~ {:dispatch_time=>0.000556, :before_filters_time=>6.0e-06, :action_time=>0.000263, :after_filters_time=>5.0e-06}
1327
+ ~ Loaded TEST Environment...
1328
+ ~ Compiling routes...
1329
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1330
+ ~ Loaded TEST Environment...
1331
+ ~ Compiling routes...
1332
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1333
+ ~ Started request handling: Sun Jul 20 01:20:50 +0300 2008
1334
+ ~ Routed to: {:action=>"bar", :format=>nil, :id=>"54", :controller=>"foo"}
1335
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1336
+ ~ {:after_filters_time=>1.5e-05, :dispatch_time=>0.001299, :before_filters_time=>1.6e-05, :action_time=>0.001066}
1337
+ ~ Started request handling: Sun Jul 20 01:20:50 +0300 2008
1338
+ ~ Routed to: {:action=>"bar", :format=>nil, :id=>"54", :controller=>"foo"}
1339
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1340
+ ~ {:after_filters_time=>5.0e-06, :dispatch_time=>0.000476, :before_filters_time=>6.0e-06, :action_time=>0.000257}
1341
+ ~ Loaded TEST Environment...
1342
+ ~ Compiling routes...
1343
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1344
+ ~ Loaded TEST Environment...
1345
+ ~ Compiling routes...
1346
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1347
+ ~ Started request handling: Sun Jul 20 03:11:25 +0300 2008
1348
+ ~ Routed to: {:action=>"bar", :format=>nil, :id=>"54", :controller=>"foo"}
1349
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1350
+ ~ {:after_filters_time=>1.4e-05, :dispatch_time=>0.001268, :before_filters_time=>1.6e-05, :action_time=>0.001034}
1351
+ ~ Started request handling: Sun Jul 20 03:11:25 +0300 2008
1352
+ ~ Routed to: {:action=>"bar", :format=>nil, :id=>"54", :controller=>"foo"}
1353
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1354
+ ~ {:after_filters_time=>5.0e-06, :dispatch_time=>0.000399, :before_filters_time=>6.0e-06, :action_time=>0.000246}
1355
+ ~ Loaded TEST Environment...
1356
+ ~ Compiling routes...
1357
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1358
+ ~ Loaded TEST Environment...
1359
+ ~ Compiling routes...
1360
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1361
+ ~ Started request handling: Sun Jul 20 03:17:01 +0300 2008
1362
+ ~ Routed to: {:action=>"bar", :format=>nil, :id=>"54", :controller=>"foo"}
1363
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1364
+ ~ {:after_filters_time=>1.4e-05, :dispatch_time=>0.001303, :before_filters_time=>1.8e-05, :action_time=>0.001069}
1365
+ ~ Started request handling: Sun Jul 20 03:17:01 +0300 2008
1366
+ ~ Routed to: {:action=>"bar", :format=>nil, :id=>"54", :controller=>"foo"}
1367
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1368
+ ~ {:after_filters_time=>5.0e-06, :dispatch_time=>0.000401, :before_filters_time=>7.0e-06, :action_time=>0.000244}
1369
+ ~ Loaded TEST Environment...
1370
+ ~ Compiling routes...
1371
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1372
+ ~ Loaded TEST Environment...
1373
+ ~ Compiling routes...
1374
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1375
+ ~ Started request handling: Sun Jul 20 03:52:12 +0300 2008
1376
+ ~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
1377
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1378
+ ~ {:after_filters_time=>1.4e-05, :dispatch_time=>0.001363, :before_filters_time=>1.7e-05, :action_time=>0.00111}
1379
+ ~ Started request handling: Sun Jul 20 03:52:12 +0300 2008
1380
+ ~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
1381
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1382
+ ~ {:after_filters_time=>5.0e-06, :dispatch_time=>0.000425, :before_filters_time=>7.0e-06, :action_time=>0.000259}
1383
+ ~ Loaded TEST Environment...
1384
+ ~ Compiling routes...
1385
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1386
+ ~ Loaded TEST Environment...
1387
+ ~ Compiling routes...
1388
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1389
+ ~ Started request handling: Sun Jul 20 05:11:39 +0300 2008
1390
+ ~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
1391
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1392
+ ~ {:after_filters_time=>1.4e-05, :dispatch_time=>0.001337, :before_filters_time=>1.6e-05, :action_time=>0.001101}
1393
+ ~ Started request handling: Sun Jul 20 05:11:39 +0300 2008
1394
+ ~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
1395
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1396
+ ~ {:after_filters_time=>5.0e-06, :dispatch_time=>0.000799, :before_filters_time=>7.0e-06, :action_time=>0.000263}
1397
+ ~ Loaded TEST Environment...
1398
+ ~ Compiling routes...
1399
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1400
+ ~ Loaded TEST Environment...
1401
+ ~ Compiling routes...
1402
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1403
+ ~ Started request handling: Sun Jul 20 05:18:00 +0300 2008
1404
+ ~ Routed to: {:action=>"bar", :format=>nil, :id=>"54", :controller=>"foo"}
1405
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1406
+ ~ {:after_filters_time=>1.4e-05, :dispatch_time=>0.001253, :before_filters_time=>1.7e-05, :action_time=>0.001023}
1407
+ ~ Started request handling: Sun Jul 20 05:18:00 +0300 2008
1408
+ ~ Routed to: {:action=>"bar", :format=>nil, :id=>"54", :controller=>"foo"}
1409
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1410
+ ~ {:after_filters_time=>4.0e-06, :dispatch_time=>0.000404, :before_filters_time=>7.0e-06, :action_time=>0.000246}
1411
+ ~ Loaded TEST Environment...
1412
+ ~ Compiling routes...
1413
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1414
+ ~ Loaded TEST Environment...
1415
+ ~ Compiling routes...
1416
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1417
+ ~ Started request handling: Sun Jul 20 21:01:31 +0300 2008
1418
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1419
+ ~ {:after_filters_time=>1.6e-05, :dispatch_time=>0.001356, :before_filters_time=>1.7e-05, :action_time=>0.001108}
1420
+ ~ Started request handling: Sun Jul 20 21:01:31 +0300 2008
1421
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1422
+ ~ {:after_filters_time=>5.0e-06, :dispatch_time=>0.000458, :before_filters_time=>7.0e-06, :action_time=>0.000279}
1423
+ ~ Loaded TEST Environment...
1424
+ ~ Compiling routes...
1425
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1426
+ ~ Loaded TEST Environment...
1427
+ ~ Compiling routes...
1428
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1429
+ ~ Started request handling: Tue Jul 22 02:24:14 +0300 2008
1430
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1431
+ ~ {:after_filters_time=>1.5e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.001267, :action_time=>0.001034}
1432
+ ~ Started request handling: Tue Jul 22 02:24:14 +0300 2008
1433
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1434
+ ~ {:after_filters_time=>5.0e-06, :before_filters_time=>8.0e-06, :dispatch_time=>0.000512, :action_time=>0.000328}
1435
+ ~ Loaded TEST Environment...
1436
+ ~ Compiling routes...
1437
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1438
+ ~ Loaded TEST Environment...
1439
+ ~ Compiling routes...
1440
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1441
+ ~ Started request handling: Tue Jul 22 03:00:07 +0300 2008
1442
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1443
+ ~ {:dispatch_time=>0.001566, :action_time=>0.001284, :after_filters_time=>1.6e-05, :before_filters_time=>1.9e-05}
1444
+ ~ Started request handling: Tue Jul 22 03:00:07 +0300 2008
1445
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1446
+ ~ {:dispatch_time=>0.000486, :action_time=>0.000301, :after_filters_time=>5.0e-06, :before_filters_time=>7.0e-06}
1447
+ ~ Loaded TEST Environment...
1448
+ ~ Compiling routes...
1449
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1450
+ ~ Loaded TEST Environment...
1451
+ ~ Compiling routes...
1452
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1453
+ ~ Started request handling: Tue Jul 22 03:29:50 +0300 2008
1454
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1455
+ ~ {:dispatch_time=>0.001378, :action_time=>0.001126, :after_filters_time=>2.3e-05, :before_filters_time=>1.9e-05}
1456
+ ~ Started request handling: Tue Jul 22 03:29:50 +0300 2008
1457
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1458
+ ~ {:dispatch_time=>0.000475, :action_time=>0.000268, :after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06}
1459
+ ~ Loaded TEST Environment...
1460
+ ~ Compiling routes...
1461
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1462
+ ~ Loaded TEST Environment...
1463
+ ~ Compiling routes...
1464
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1465
+ ~ Started request handling: Tue Jul 22 03:31:54 +0300 2008
1466
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1467
+ ~ {:dispatch_time=>0.001453, :action_time=>0.001185, :after_filters_time=>1.7e-05, :before_filters_time=>1.9e-05}
1468
+ ~ Started request handling: Tue Jul 22 03:31:54 +0300 2008
1469
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1470
+ ~ {:dispatch_time=>0.00048, :action_time=>0.000297, :after_filters_time=>5.0e-06, :before_filters_time=>8.0e-06}
1471
+ ~ Loaded TEST Environment...
1472
+ ~ Compiling routes...
1473
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1474
+ ~ Loaded TEST Environment...
1475
+ ~ Compiling routes...
1476
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1477
+ ~ Started request handling: Tue Jul 22 13:04:54 +0300 2008
1478
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1479
+ ~ {:dispatch_time=>0.00134, :action_time=>0.001104, :after_filters_time=>1.5e-05, :before_filters_time=>1.7e-05}
1480
+ ~ Started request handling: Tue Jul 22 13:04:54 +0300 2008
1481
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1482
+ ~ {:dispatch_time=>0.000482, :action_time=>0.00026, :after_filters_time=>5.0e-06, :before_filters_time=>7.0e-06}
1483
+ ~ Loaded TEST Environment...
1484
+ ~ Compiling routes...
1485
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1486
+ ~ Loaded TEST Environment...
1487
+ ~ Compiling routes...
1488
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1489
+ ~ Started request handling: Tue Jul 22 13:08:45 +0300 2008
1490
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1491
+ ~ {:dispatch_time=>0.001402, :action_time=>0.001143, :after_filters_time=>1.5e-05, :before_filters_time=>1.8e-05}
1492
+ ~ Started request handling: Tue Jul 22 13:08:45 +0300 2008
1493
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1494
+ ~ {:dispatch_time=>0.001097, :action_time=>0.000887, :after_filters_time=>6.0e-06, :before_filters_time=>7.0e-06}
1495
+ ~ Loaded TEST Environment...
1496
+ ~ Compiling routes...
1497
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1498
+ ~ Loaded TEST Environment...
1499
+ ~ Compiling routes...
1500
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1501
+ ~ Started request handling: Tue Jul 22 13:13:18 +0300 2008
1502
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1503
+ ~ {:after_filters_time=>1.5e-05, :before_filters_time=>1.6e-05, :dispatch_time=>0.001586, :action_time=>0.001309}
1504
+ ~ Started request handling: Tue Jul 22 13:13:18 +0300 2008
1505
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1506
+ ~ {:after_filters_time=>5.0e-06, :before_filters_time=>7.0e-06, :dispatch_time=>0.003786, :action_time=>0.000445}
1507
+ ~ Loaded TEST Environment...
1508
+ ~ Compiling routes...
1509
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1510
+ ~ Loaded TEST Environment...
1511
+ ~ Compiling routes...
1512
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1513
+ ~ Started request handling: Tue Jul 22 13:14:12 +0300 2008
1514
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1515
+ ~ {:after_filters_time=>1.4e-05, :before_filters_time=>1.7e-05, :dispatch_time=>0.001533, :action_time=>0.001301}
1516
+ ~ Started request handling: Tue Jul 22 13:14:12 +0300 2008
1517
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1518
+ ~ {:after_filters_time=>0.000233, :before_filters_time=>6.0e-06, :dispatch_time=>0.001949, :action_time=>0.001785}
1519
+ ~ Loaded TEST Environment...
1520
+ ~ Compiling routes...
1521
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1522
+ ~ Loaded TEST Environment...
1523
+ ~ Compiling routes...
1524
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1525
+ ~ Started request handling: Tue Jul 22 13:17:23 +0300 2008
1526
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1527
+ ~ {:after_filters_time=>1.5e-05, :before_filters_time=>1.7e-05, :dispatch_time=>0.001645, :action_time=>0.001367}
1528
+ ~ Started request handling: Tue Jul 22 13:17:23 +0300 2008
1529
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1530
+ ~ {:after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.000653, :action_time=>0.000485}
1531
+ ~ Loaded TEST Environment...
1532
+ ~ Compiling routes...
1533
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1534
+ ~ Loaded TEST Environment...
1535
+ ~ Compiling routes...
1536
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1537
+ ~ Started request handling: Tue Jul 22 13:19:35 +0300 2008
1538
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1539
+ ~ {:dispatch_time=>0.00156, :action_time=>0.001307, :after_filters_time=>1.5e-05, :before_filters_time=>1.7e-05}
1540
+ ~ Started request handling: Tue Jul 22 13:19:35 +0300 2008
1541
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1542
+ ~ {:dispatch_time=>0.000616, :action_time=>0.000454, :after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06}
1543
+ ~ Loaded TEST Environment...
1544
+ ~ Compiling routes...
1545
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1546
+ ~ Loaded TEST Environment...
1547
+ ~ Compiling routes...
1548
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1549
+ ~ Started request handling: Tue Jul 22 13:20:33 +0300 2008
1550
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1551
+ ~ {:dispatch_time=>0.001551, :action_time=>0.001303, :after_filters_time=>1.5e-05, :before_filters_time=>1.7e-05}
1552
+ ~ Started request handling: Tue Jul 22 13:20:33 +0300 2008
1553
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1554
+ ~ {:dispatch_time=>0.003815, :action_time=>0.002324, :after_filters_time=>6.0e-06, :before_filters_time=>7.0e-06}
1555
+ ~ Loaded TEST Environment...
1556
+ ~ Compiling routes...
1557
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1558
+ ~ Loaded TEST Environment...
1559
+ ~ Compiling routes...
1560
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1561
+ ~ Started request handling: Tue Jul 22 13:21:33 +0300 2008
1562
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1563
+ ~ {:dispatch_time=>0.002243, :action_time=>0.001775, :after_filters_time=>1.7e-05, :before_filters_time=>2.3e-05}
1564
+ ~ Started request handling: Tue Jul 22 13:21:33 +0300 2008
1565
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1566
+ ~ {:dispatch_time=>0.000754, :action_time=>0.000526, :after_filters_time=>7.0e-06, :before_filters_time=>8.0e-06}
1567
+ ~ Loaded TEST Environment...
1568
+ ~ Compiling routes...
1569
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1570
+ ~ Loaded TEST Environment...
1571
+ ~ Compiling routes...
1572
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1573
+ ~ Started request handling: Tue Jul 22 13:27:19 +0300 2008
1574
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1575
+ ~ {:dispatch_time=>0.001545, :action_time=>0.001299, :after_filters_time=>1.6e-05, :before_filters_time=>1.9e-05}
1576
+ ~ Started request handling: Tue Jul 22 13:27:19 +0300 2008
1577
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1578
+ ~ {:dispatch_time=>0.000619, :action_time=>0.000451, :after_filters_time=>6.0e-06, :before_filters_time=>7.0e-06}
1579
+ ~ Loaded TEST Environment...
1580
+ ~ Compiling routes...
1581
+ ~ Compiling routes...
1582
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1583
+ ~ Loaded TEST Environment...
1584
+ ~ Compiling routes...
1585
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1586
+ ~ Started request handling: Tue Jul 22 13:29:12 +0300 2008
1587
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1588
+ ~ {:dispatch_time=>0.001686, :action_time=>0.001419, :after_filters_time=>1.7e-05, :before_filters_time=>1.8e-05}
1589
+ ~ Started request handling: Tue Jul 22 13:29:12 +0300 2008
1590
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1591
+ ~ {:dispatch_time=>0.000659, :action_time=>0.000467, :after_filters_time=>6.0e-06, :before_filters_time=>8.0e-06}
1592
+ ~ Loaded TEST Environment...
1593
+ ~ Compiling routes...
1594
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1595
+ ~ Loaded TEST Environment...
1596
+ ~ Compiling routes...
1597
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1598
+ ~ Started request handling: Tue Jul 22 13:31:22 +0300 2008
1599
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1600
+ ~ {:dispatch_time=>0.0017, :action_time=>0.001385, :after_filters_time=>1.5e-05, :before_filters_time=>1.7e-05}
1601
+ ~ Started request handling: Tue Jul 22 13:31:22 +0300 2008
1602
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1603
+ ~ {:dispatch_time=>0.000611, :action_time=>0.000438, :after_filters_time=>5.0e-06, :before_filters_time=>6.0e-06}
1604
+ ~ Loaded TEST Environment...
1605
+ ~ Compiling routes...
1606
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1607
+ ~ Loaded TEST Environment...
1608
+ ~ Compiling routes...
1609
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1610
+ ~ Started request handling: Tue Jul 22 13:34:54 +0300 2008
1611
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1612
+ ~ {:after_filters_time=>1.5e-05, :before_filters_time=>1.7e-05, :dispatch_time=>0.001577, :action_time=>0.001332}
1613
+ ~ Started request handling: Tue Jul 22 13:34:54 +0300 2008
1614
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1615
+ ~ {:after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.000576, :action_time=>0.000422}
1616
+ ~ Loaded TEST Environment...
1617
+ ~ Compiling routes...
1618
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1619
+ ~ Loaded TEST Environment...
1620
+ ~ Compiling routes...
1621
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1622
+ ~ Started request handling: Tue Jul 22 13:36:17 +0300 2008
1623
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1624
+ ~ {:after_filters_time=>1.8e-05, :before_filters_time=>1.9e-05, :dispatch_time=>0.001751, :action_time=>0.001461}
1625
+ ~ Started request handling: Tue Jul 22 13:36:17 +0300 2008
1626
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1627
+ ~ {:after_filters_time=>6.0e-06, :before_filters_time=>1.0e-05, :dispatch_time=>0.000742, :action_time=>0.000523}
1628
+ ~ Loaded TEST Environment...
1629
+ ~ Compiling routes...
1630
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1631
+ ~ Loaded TEST Environment...
1632
+ ~ Compiling routes...
1633
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1634
+ ~ Started request handling: Tue Jul 22 13:37:58 +0300 2008
1635
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1636
+ ~ {:after_filters_time=>1.5e-05, :before_filters_time=>1.9e-05, :dispatch_time=>0.00166, :action_time=>0.001385}
1637
+ ~ Started request handling: Tue Jul 22 13:37:58 +0300 2008
1638
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1639
+ ~ {:after_filters_time=>5.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.000613, :action_time=>0.000448}
1640
+ ~ Loaded TEST Environment...
1641
+ ~ Compiling routes...
1642
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1643
+ ~ Loaded TEST Environment...
1644
+ ~ Compiling routes...
1645
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1646
+ ~ Started request handling: Tue Jul 22 13:38:54 +0300 2008
1647
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1648
+ ~ {:after_filters_time=>1.5e-05, :before_filters_time=>2.0e-05, :dispatch_time=>0.001796, :action_time=>0.00147}
1649
+ ~ Started request handling: Tue Jul 22 13:38:54 +0300 2008
1650
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1651
+ ~ {:after_filters_time=>6.0e-06, :before_filters_time=>0.000298, :dispatch_time=>0.003748, :action_time=>0.003231}
1652
+ ~ Loaded TEST Environment...
1653
+ ~ Compiling routes...
1654
+ ~ Compiling routes...
1655
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1656
+ ~ Loaded TEST Environment...
1657
+ ~ Compiling routes...
1658
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1659
+ ~ Started request handling: Tue Jul 22 13:39:46 +0300 2008
1660
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1661
+ ~ {:after_filters_time=>1.4e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.001568, :action_time=>0.00132}
1662
+ ~ Started request handling: Tue Jul 22 13:39:46 +0300 2008
1663
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1664
+ ~ {:after_filters_time=>6.0e-06, :before_filters_time=>5.0e-06, :dispatch_time=>0.000607, :action_time=>0.00044}
1665
+ ~ Loaded TEST Environment...
1666
+ ~ Compiling routes...
1667
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1668
+ ~ Loaded TEST Environment...
1669
+ ~ Compiling routes...
1670
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1671
+ ~ Started request handling: Tue Jul 22 13:44:43 +0300 2008
1672
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1673
+ ~ {:after_filters_time=>1.4e-05, :before_filters_time=>1.7e-05, :dispatch_time=>0.001541, :action_time=>0.001295}
1674
+ ~ Started request handling: Tue Jul 22 13:44:43 +0300 2008
1675
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1676
+ ~ {:after_filters_time=>5.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.000614, :action_time=>0.000447}
1677
+ ~ Loaded TEST Environment...
1678
+ ~ Compiling routes...
1679
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1680
+ ~ Loaded TEST Environment...
1681
+ ~ Compiling routes...
1682
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1683
+ ~ Started request handling: Tue Jul 22 13:47:16 +0300 2008
1684
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1685
+ ~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.9e-05, :dispatch_time=>0.001853, :action_time=>0.001537}
1686
+ ~ Started request handling: Tue Jul 22 13:47:16 +0300 2008
1687
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1688
+ ~ {:after_filters_time=>6.0e-06, :before_filters_time=>7.0e-06, :dispatch_time=>0.000813, :action_time=>0.000613}
1689
+ ~ Loaded TEST Environment...
1690
+ ~ Compiling routes...
1691
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1692
+ ~ Loaded TEST Environment...
1693
+ ~ Compiling routes...
1694
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1695
+ ~ Started request handling: Tue Jul 22 13:51:25 +0300 2008
1696
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1697
+ ~ {:after_filters_time=>1.5e-05, :before_filters_time=>1.7e-05, :dispatch_time=>0.001571, :action_time=>0.001284}
1698
+ ~ Started request handling: Tue Jul 22 13:51:25 +0300 2008
1699
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1700
+ ~ {:after_filters_time=>6.0e-06, :before_filters_time=>7.0e-06, :dispatch_time=>0.003414, :action_time=>0.001503}
1701
+ ~ Loaded TEST Environment...
1702
+ ~ Compiling routes...
1703
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1704
+ ~ Loaded TEST Environment...
1705
+ ~ Compiling routes...
1706
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1707
+ ~ Started request handling: Tue Jul 22 14:00:11 +0300 2008
1708
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1709
+ ~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.001707, :action_time=>0.001442}
1710
+ ~ Started request handling: Tue Jul 22 14:00:11 +0300 2008
1711
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1712
+ ~ {:after_filters_time=>6.0e-06, :before_filters_time=>7.0e-06, :dispatch_time=>0.000602, :action_time=>0.000438}
1713
+ ~ Loaded TEST Environment...
1714
+ ~ Compiling routes...
1715
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1716
+ ~ Loaded TEST Environment...
1717
+ ~ Compiling routes...
1718
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1719
+ ~ Started request handling: Tue Jul 22 14:02:13 +0300 2008
1720
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1721
+ ~ {:after_filters_time=>1.7e-05, :before_filters_time=>2.0e-05, :dispatch_time=>0.001559, :action_time=>0.001308}
1722
+ ~ Started request handling: Tue Jul 22 14:02:13 +0300 2008
1723
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1724
+ ~ {:after_filters_time=>6.0e-06, :before_filters_time=>7.0e-06, :dispatch_time=>0.002237, :action_time=>0.000584}
1725
+ ~ Loaded TEST Environment...
1726
+ ~ Compiling routes...
1727
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1728
+ ~ Loaded TEST Environment...
1729
+ ~ Compiling routes...
1730
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1731
+ ~ Started request handling: Tue Jul 22 14:11:03 +0300 2008
1732
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1733
+ ~ {:after_filters_time=>1.5e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.001672, :action_time=>0.001402}
1734
+ ~ Started request handling: Tue Jul 22 14:11:03 +0300 2008
1735
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1736
+ ~ {:after_filters_time=>6.0e-06, :before_filters_time=>7.0e-06, :dispatch_time=>0.000669, :action_time=>0.000468}
1737
+ ~ Loaded TEST Environment...
1738
+ ~ Compiling routes...
1739
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1740
+ ~ Loaded TEST Environment...
1741
+ ~ Compiling routes...
1742
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1743
+ ~ Started request handling: Tue Jul 22 14:49:44 +0300 2008
1744
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1745
+ ~ {:after_filters_time=>1.5e-05, :before_filters_time=>1.7e-05, :dispatch_time=>0.001596, :action_time=>0.001358}
1746
+ ~ Started request handling: Tue Jul 22 14:49:44 +0300 2008
1747
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1748
+ ~ {:after_filters_time=>6.0e-06, :before_filters_time=>8.0e-06, :dispatch_time=>0.001553, :action_time=>0.001356}
1749
+ ~ Loaded TEST Environment...
1750
+ ~ Compiling routes...
1751
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1752
+ ~ Loaded TEST Environment...
1753
+ ~ Compiling routes...
1754
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1755
+ ~ Started request handling: Wed Jul 23 01:43:14 +0300 2008
1756
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1757
+ ~ {:dispatch_time=>0.001774, :after_filters_time=>1.5e-05, :action_time=>0.001471, :before_filters_time=>1.7e-05}
1758
+ ~ Started request handling: Wed Jul 23 01:43:14 +0300 2008
1759
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1760
+ ~ {:dispatch_time=>0.00106, :after_filters_time=>6.0e-06, :action_time=>0.000873, :before_filters_time=>7.0e-06}
1761
+ ~ Loaded TEST Environment...
1762
+ ~ Compiling routes...
1763
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1764
+ ~ Loaded TEST Environment...
1765
+ ~ Compiling routes...
1766
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1767
+ ~ Started request handling: Thu Jul 24 22:07:12 +0300 2008
1768
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1769
+ ~ {:dispatch_time=>0.002538, :after_filters_time=>1.5e-05, :action_time=>0.002242, :before_filters_time=>2.0e-05}
1770
+ ~ Started request handling: Thu Jul 24 22:07:12 +0300 2008
1771
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1772
+ ~ {:dispatch_time=>0.000701, :after_filters_time=>5.0e-06, :action_time=>0.000488, :before_filters_time=>6.0e-06}
1773
+ ~ Loaded TEST Environment...
1774
+ ~ Compiling routes...
1775
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1776
+ ~ Loaded TEST Environment...
1777
+ ~ Compiling routes...
1778
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1779
+ ~ Started request handling: Sun Jul 27 09:00:25 +0400 2008
1780
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1781
+ ~ {:action_time=>0.001477, :after_filters_time=>1.5e-05, :dispatch_time=>0.001741, :before_filters_time=>1.8e-05}
1782
+ ~ Started request handling: Sun Jul 27 09:00:25 +0400 2008
1783
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1784
+ ~ {:action_time=>0.000497, :after_filters_time=>5.0e-06, :dispatch_time=>0.000734, :before_filters_time=>5.0e-06}
1785
+ ~ Loaded TEST Environment...
1786
+ ~ Compiling routes...
1787
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1788
+ ~ Loaded TEST Environment...
1789
+ ~ Compiling routes...
1790
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1791
+ ~ Loaded TEST Environment...
1792
+ ~ Compiling routes...
1793
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1794
+ ~ Loaded TEST Environment...
1795
+ ~ Compiling routes...
1796
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1797
+ ~ Started request handling: Fri Aug 01 03:45:44 +0300 2008
1798
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1799
+ ~ {:action_time=>0.001314, :after_filters_time=>1.5e-05, :dispatch_time=>0.001563, :before_filters_time=>1.7e-05}
1800
+ ~ Started request handling: Fri Aug 01 03:45:44 +0300 2008
1801
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1802
+ ~ {:action_time=>0.000465, :after_filters_time=>5.0e-06, :dispatch_time=>0.000651, :before_filters_time=>7.0e-06}
1803
+ ~ Loaded TEST Environment...
1804
+ ~ Compiling routes...
1805
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1806
+ ~ Loaded TEST Environment...
1807
+ ~ Compiling routes...
1808
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1809
+ ~ Started request handling: Fri Aug 01 04:31:58 +0300 2008
1810
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1811
+ ~ {:action_time=>0.001439, :after_filters_time=>1.5e-05, :dispatch_time=>0.001702, :before_filters_time=>1.8e-05}
1812
+ ~ Started request handling: Fri Aug 01 04:31:58 +0300 2008
1813
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1814
+ ~ {:action_time=>0.000533, :after_filters_time=>7.0e-06, :dispatch_time=>0.000705, :before_filters_time=>7.0e-06}
1815
+ ~ Loaded TEST Environment...
1816
+ ~ Compiling routes...
1817
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1818
+ ~ Loaded TEST Environment...
1819
+ ~ Compiling routes...
1820
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1821
+ ~ Started request handling: Fri Aug 01 04:32:45 +0300 2008
1822
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1823
+ ~ {:action_time=>0.001598, :after_filters_time=>2.1e-05, :before_filters_time=>2.4e-05, :dispatch_time=>0.001936}
1824
+ ~ Started request handling: Fri Aug 01 04:32:45 +0300 2008
1825
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1826
+ ~ {:action_time=>0.000602, :after_filters_time=>8.0e-06, :before_filters_time=>1.0e-05, :dispatch_time=>0.000881}
1827
+ ~ Loaded TEST Environment...
1828
+ ~ Compiling routes...
1829
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1830
+ ~ Loaded TEST Environment...
1831
+ ~ Compiling routes...
1832
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1833
+ ~ Started request handling: Fri Aug 01 04:37:45 +0300 2008
1834
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1835
+ ~ {:action_time=>0.001337, :after_filters_time=>1.5e-05, :dispatch_time=>0.001576, :before_filters_time=>1.7e-05}
1836
+ ~ Started request handling: Fri Aug 01 04:37:45 +0300 2008
1837
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1838
+ ~ {:action_time=>0.000461, :after_filters_time=>5.0e-06, :dispatch_time=>0.000617, :before_filters_time=>6.0e-06}
1839
+ ~ Loaded TEST Environment...
1840
+ ~ Compiling routes...
1841
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1842
+ ~ Loaded TEST Environment...
1843
+ ~ Compiling routes...
1844
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1845
+ ~ Started request handling: Fri Aug 01 04:39:46 +0300 2008
1846
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1847
+ ~ {:action_time=>0.001402, :after_filters_time=>1.5e-05, :dispatch_time=>0.001645, :before_filters_time=>1.7e-05}
1848
+ ~ Started request handling: Fri Aug 01 04:39:46 +0300 2008
1849
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1850
+ ~ {:action_time=>0.000461, :after_filters_time=>5.0e-06, :dispatch_time=>0.000652, :before_filters_time=>6.0e-06}
1851
+ ~ Loaded TEST Environment...
1852
+ ~ Compiling routes...
1853
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1854
+ ~ Loaded TEST Environment...
1855
+ ~ Compiling routes...
1856
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1857
+ ~ Started request handling: Fri Aug 01 14:30:10 +0300 2008
1858
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1859
+ ~ {:action_time=>0.001397, :after_filters_time=>1.6e-05, :dispatch_time=>0.001632, :before_filters_time=>1.8e-05}
1860
+ ~ Started request handling: Fri Aug 01 14:30:10 +0300 2008
1861
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1862
+ ~ {:action_time=>0.000469, :after_filters_time=>5.0e-06, :dispatch_time=>0.000673, :before_filters_time=>7.0e-06}
1863
+ ~ Loaded TEST Environment...
1864
+ ~ Compiling routes...
1865
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1866
+ ~ Loaded TEST Environment...
1867
+ ~ Compiling routes...
1868
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
1869
+ ~ Started request handling: Fri Aug 01 14:35:24 +0300 2008
1870
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1871
+ ~ {:dispatch_time=>0.001756, :action_time=>0.001492, :after_filters_time=>1.7e-05, :before_filters_time=>1.9e-05}
1872
+ ~ Started request handling: Fri Aug 01 14:35:24 +0300 2008
1873
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
1874
+ ~ {:dispatch_time=>0.000654, :action_time=>0.000482, :after_filters_time=>7.0e-06, :before_filters_time=>6.0e-06}