merb-core 0.9.2
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +20 -0
- data/README +21 -0
- data/Rakefile +285 -0
- data/TODO +0 -0
- data/bin/merb +8 -0
- data/bin/merb-specs +5 -0
- data/docs/bootloading.dox +57 -0
- data/docs/documentation_standards +40 -0
- data/docs/new_render_api +51 -0
- data/lib/merb-core.rb +304 -0
- data/lib/merb-core/autoload.rb +29 -0
- data/lib/merb-core/bootloader.rb +601 -0
- data/lib/merb-core/config.rb +284 -0
- data/lib/merb-core/constants.rb +43 -0
- data/lib/merb-core/controller/abstract_controller.rb +531 -0
- data/lib/merb-core/controller/exceptions.rb +257 -0
- data/lib/merb-core/controller/merb_controller.rb +214 -0
- data/lib/merb-core/controller/mime.rb +88 -0
- data/lib/merb-core/controller/mixins/controller.rb +262 -0
- data/lib/merb-core/controller/mixins/render.rb +324 -0
- data/lib/merb-core/controller/mixins/responder.rb +464 -0
- data/lib/merb-core/controller/template.rb +205 -0
- data/lib/merb-core/core_ext.rb +12 -0
- data/lib/merb-core/core_ext/class.rb +192 -0
- data/lib/merb-core/core_ext/hash.rb +422 -0
- data/lib/merb-core/core_ext/kernel.rb +304 -0
- data/lib/merb-core/core_ext/mash.rb +154 -0
- data/lib/merb-core/core_ext/object.rb +136 -0
- data/lib/merb-core/core_ext/object_space.rb +14 -0
- data/lib/merb-core/core_ext/rubygems.rb +28 -0
- data/lib/merb-core/core_ext/set.rb +41 -0
- data/lib/merb-core/core_ext/string.rb +69 -0
- data/lib/merb-core/dispatch/cookies.rb +92 -0
- data/lib/merb-core/dispatch/dispatcher.rb +233 -0
- data/lib/merb-core/dispatch/exceptions.html.erb +297 -0
- data/lib/merb-core/dispatch/request.rb +560 -0
- data/lib/merb-core/dispatch/router.rb +141 -0
- data/lib/merb-core/dispatch/router/behavior.rb +777 -0
- data/lib/merb-core/dispatch/router/cached_proc.rb +52 -0
- data/lib/merb-core/dispatch/router/route.rb +212 -0
- data/lib/merb-core/dispatch/session.rb +28 -0
- data/lib/merb-core/dispatch/session/cookie.rb +166 -0
- data/lib/merb-core/dispatch/session/memcached.rb +161 -0
- data/lib/merb-core/dispatch/session/memory.rb +234 -0
- data/lib/merb-core/gem_ext/erubis.rb +19 -0
- data/lib/merb-core/logger.rb +230 -0
- data/lib/merb-core/plugins.rb +25 -0
- data/lib/merb-core/rack.rb +15 -0
- data/lib/merb-core/rack/adapter.rb +42 -0
- data/lib/merb-core/rack/adapter/ebb.rb +22 -0
- data/lib/merb-core/rack/adapter/evented_mongrel.rb +24 -0
- data/lib/merb-core/rack/adapter/fcgi.rb +16 -0
- data/lib/merb-core/rack/adapter/irb.rb +108 -0
- data/lib/merb-core/rack/adapter/mongrel.rb +25 -0
- data/lib/merb-core/rack/adapter/runner.rb +27 -0
- data/lib/merb-core/rack/adapter/thin.rb +27 -0
- data/lib/merb-core/rack/adapter/webrick.rb +35 -0
- data/lib/merb-core/rack/application.rb +77 -0
- data/lib/merb-core/rack/handler/mongrel.rb +97 -0
- data/lib/merb-core/server.rb +184 -0
- data/lib/merb-core/test.rb +10 -0
- data/lib/merb-core/test/helpers.rb +9 -0
- data/lib/merb-core/test/helpers/controller_helper.rb +8 -0
- data/lib/merb-core/test/helpers/multipart_request_helper.rb +175 -0
- data/lib/merb-core/test/helpers/request_helper.rb +257 -0
- data/lib/merb-core/test/helpers/route_helper.rb +33 -0
- data/lib/merb-core/test/helpers/view_helper.rb +121 -0
- data/lib/merb-core/test/matchers.rb +9 -0
- data/lib/merb-core/test/matchers/controller_matchers.rb +269 -0
- data/lib/merb-core/test/matchers/route_matchers.rb +136 -0
- data/lib/merb-core/test/matchers/view_matchers.rb +293 -0
- data/lib/merb-core/test/run_specs.rb +38 -0
- data/lib/merb-core/test/tasks/spectasks.rb +39 -0
- data/lib/merb-core/test/test_ext/hpricot.rb +32 -0
- data/lib/merb-core/test/test_ext/object.rb +14 -0
- data/lib/merb-core/vendor/facets.rb +2 -0
- data/lib/merb-core/vendor/facets/dictionary.rb +433 -0
- data/lib/merb-core/vendor/facets/inflect.rb +211 -0
- data/lib/merb-core/version.rb +11 -0
- data/spec/private/config/adapter_spec.rb +32 -0
- data/spec/private/config/config_spec.rb +139 -0
- data/spec/private/config/environment_spec.rb +13 -0
- data/spec/private/config/spec_helper.rb +1 -0
- data/spec/private/core_ext/hash_spec.rb +506 -0
- data/spec/private/core_ext/kernel_spec.rb +46 -0
- data/spec/private/core_ext/object_spec.rb +39 -0
- data/spec/private/core_ext/set_spec.rb +26 -0
- data/spec/private/core_ext/string_spec.rb +9 -0
- data/spec/private/dispatch/cookies_spec.rb +107 -0
- data/spec/private/dispatch/dispatch_spec.rb +26 -0
- data/spec/private/dispatch/fixture/app/controllers/application.rb +4 -0
- data/spec/private/dispatch/fixture/app/controllers/exceptions.rb +27 -0
- data/spec/private/dispatch/fixture/app/controllers/foo.rb +21 -0
- data/spec/private/dispatch/fixture/app/helpers/global_helpers.rb +8 -0
- data/spec/private/dispatch/fixture/app/views/exeptions/client_error.html.erb +37 -0
- data/spec/private/dispatch/fixture/app/views/exeptions/internal_server_error.html.erb +216 -0
- data/spec/private/dispatch/fixture/app/views/exeptions/not_acceptable.html.erb +38 -0
- data/spec/private/dispatch/fixture/app/views/exeptions/not_found.html.erb +40 -0
- data/spec/private/dispatch/fixture/app/views/foo/bar.html.erb +0 -0
- data/spec/private/dispatch/fixture/app/views/layout/application.html.erb +11 -0
- data/spec/private/dispatch/fixture/config/environments/development.rb +6 -0
- data/spec/private/dispatch/fixture/config/environments/production.rb +5 -0
- data/spec/private/dispatch/fixture/config/environments/test.rb +6 -0
- data/spec/private/dispatch/fixture/config/init.rb +45 -0
- data/spec/private/dispatch/fixture/config/rack.rb +1 -0
- data/spec/private/dispatch/fixture/config/router.rb +35 -0
- data/spec/private/dispatch/fixture/log/development.log +1 -0
- data/spec/private/dispatch/fixture/log/merb.4000.pid +1 -0
- data/spec/private/dispatch/fixture/log/merb_test.log +2040 -0
- data/spec/private/dispatch/fixture/log/production.log +1 -0
- data/spec/private/dispatch/fixture/merb.4000.pid +1 -0
- data/spec/private/dispatch/fixture/public/images/merb.jpg +0 -0
- data/spec/private/dispatch/fixture/public/merb.fcgi +4 -0
- data/spec/private/dispatch/fixture/public/stylesheets/master.css +119 -0
- data/spec/private/dispatch/route_params_spec.rb +24 -0
- data/spec/private/dispatch/spec_helper.rb +1 -0
- data/spec/private/plugins/plugin_spec.rb +81 -0
- data/spec/private/rack/application_spec.rb +43 -0
- data/spec/public/DEFINITIONS +11 -0
- data/spec/public/abstract_controller/controllers/alt_views/layout/application.erb +1 -0
- data/spec/public/abstract_controller/controllers/alt_views/layout/merb/test/fixtures/abstract/render_string_controller_layout.erb +1 -0
- data/spec/public/abstract_controller/controllers/alt_views/layout/merb/test/fixtures/abstract/render_template_controller_layout.erb +1 -0
- data/spec/public/abstract_controller/controllers/alt_views/merb/test/fixtures/abstract/display_object_with_multiple_roots/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/alt_views/merb/test/fixtures/abstract/display_object_with_multiple_roots/show.erb +1 -0
- data/spec/public/abstract_controller/controllers/alt_views/merb/test/fixtures/abstract/render_template_multiple_roots/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/alt_views/partial/basic_partial_with_multiple_roots/_partial.erb +1 -0
- data/spec/public/abstract_controller/controllers/alt_views/render_template_multiple_roots_and_custom_location/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/alt_views/render_template_multiple_roots_inherited/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/display.rb +54 -0
- data/spec/public/abstract_controller/controllers/filters.rb +167 -0
- data/spec/public/abstract_controller/controllers/helpers.rb +31 -0
- data/spec/public/abstract_controller/controllers/partial.rb +106 -0
- data/spec/public/abstract_controller/controllers/render.rb +86 -0
- data/spec/public/abstract_controller/controllers/views/helpers/capture/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/helpers/concat/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/layout/alt.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/layout/custom.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/display_object/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/display_object_with_action/new.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_app_layout/index.erb +0 -0
- data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_custom_layout/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_multiple_roots/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_multiple_roots/show.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/another_directory/_partial.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/basic_partial/_partial.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/basic_partial/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/basic_partial_with_multiple_roots/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/nested_partial/_first.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/nested_partial/_second.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/nested_partial/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_in_another_directory/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_both/_collection.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_both/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections/_collection.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections_and_as/_collection.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections_and_as/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_locals/_variables.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_locals/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_with_and_locals/_both.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_with_and_locals/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/with_as_partial/_with_partial.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/with_as_partial/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/with_nil_partial/_with_partial.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/with_nil_partial/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/with_partial/_with_partial.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/with_partial/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/test_display/foo.html.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/test_render/foo.html.erb +0 -0
- data/spec/public/abstract_controller/controllers/views/wonderful/index.erb +1 -0
- data/spec/public/abstract_controller/display_spec.rb +33 -0
- data/spec/public/abstract_controller/filter_spec.rb +80 -0
- data/spec/public/abstract_controller/helper_spec.rb +13 -0
- data/spec/public/abstract_controller/partial_spec.rb +53 -0
- data/spec/public/abstract_controller/render_spec.rb +70 -0
- data/spec/public/abstract_controller/spec_helper.rb +27 -0
- data/spec/public/boot_loader/boot_loader_spec.rb +33 -0
- data/spec/public/boot_loader/spec_helper.rb +1 -0
- data/spec/public/controller/base_spec.rb +31 -0
- data/spec/public/controller/controllers/base.rb +41 -0
- data/spec/public/controller/controllers/display.rb +40 -0
- data/spec/public/controller/controllers/responder.rb +67 -0
- data/spec/public/controller/controllers/url.rb +7 -0
- data/spec/public/controller/controllers/views/layout/custom.html.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/class_provides/index.html.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/class_provides/index.xml.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/display_with_template/index.html.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/html_default/index.html.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/layout/custom.html.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/local_provides/index.html.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/local_provides/index.xml.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/multi_provides/index.html.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/multi_provides/index.js.erb +1 -0
- data/spec/public/controller/display_spec.rb +34 -0
- data/spec/public/controller/log/merb.4000.pid +1 -0
- data/spec/public/controller/responder_spec.rb +95 -0
- data/spec/public/controller/spec_helper.rb +9 -0
- data/spec/public/controller/url_spec.rb +152 -0
- data/spec/public/directory_structure/directory/app/controllers/application.rb +3 -0
- data/spec/public/directory_structure/directory/app/controllers/base.rb +13 -0
- data/spec/public/directory_structure/directory/app/controllers/custom.rb +19 -0
- data/spec/public/directory_structure/directory/app/views/base/template.html.erb +1 -0
- data/spec/public/directory_structure/directory/app/views/wonderful/template.erb +1 -0
- data/spec/public/directory_structure/directory/config/router.rb +3 -0
- data/spec/public/directory_structure/directory/log/merb.4000.pid +1 -0
- data/spec/public/directory_structure/directory/log/merb_test.log +265 -0
- data/spec/public/directory_structure/directory/merb.4000.pid +1 -0
- data/spec/public/directory_structure/directory_spec.rb +44 -0
- data/spec/public/logger/logger_spec.rb +175 -0
- data/spec/public/logger/spec_helper.rb +1 -0
- data/spec/public/reloading/directory/app/controllers/application.rb +3 -0
- data/spec/public/reloading/directory/app/controllers/reload.rb +6 -0
- data/spec/public/reloading/directory/config/init.rb +2 -0
- data/spec/public/reloading/directory/log/merb.4000.pid +1 -0
- data/spec/public/reloading/directory/log/merb_test.log +59 -0
- data/spec/public/reloading/directory/merb.4000.pid +1 -0
- data/spec/public/reloading/reload_spec.rb +80 -0
- data/spec/public/request/multipart_spec.rb +15 -0
- data/spec/public/request/request_spec.rb +207 -0
- data/spec/public/router/default_spec.rb +21 -0
- data/spec/public/router/deferred_spec.rb +22 -0
- data/spec/public/router/namespace_spec.rb +113 -0
- data/spec/public/router/nested_resources_spec.rb +34 -0
- data/spec/public/router/resource_spec.rb +45 -0
- data/spec/public/router/resources_spec.rb +57 -0
- data/spec/public/router/spec_helper.rb +72 -0
- data/spec/public/router/special_spec.rb +44 -0
- data/spec/public/router/string_spec.rb +61 -0
- data/spec/public/template/template_spec.rb +92 -0
- data/spec/public/template/templates/error.html.erb +2 -0
- data/spec/public/template/templates/template.html.erb +1 -0
- data/spec/public/template/templates/template.html.myt +1 -0
- data/spec/public/test/controller_matchers_spec.rb +378 -0
- data/spec/public/test/controllers/controller_assertion_mock.rb +7 -0
- data/spec/public/test/controllers/dispatch_controller.rb +11 -0
- data/spec/public/test/controllers/spec_helper_controller.rb +30 -0
- data/spec/public/test/multipart_request_helper_spec.rb +159 -0
- data/spec/public/test/multipart_upload_text_file.txt +1 -0
- data/spec/public/test/request_helper_spec.rb +153 -0
- data/spec/public/test/route_helper_spec.rb +54 -0
- data/spec/public/test/route_matchers_spec.rb +133 -0
- data/spec/public/test/view_helper_spec.rb +96 -0
- data/spec/public/test/view_matchers_spec.rb +107 -0
- data/spec/spec_helper.rb +71 -0
- metadata +488 -0
@@ -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">© 2007 the merb dev team</div>
|
36
|
+
<p> </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">© 2007 the merb dev team</div>
|
38
|
+
<p> </p>
|
39
|
+
</div>
|
40
|
+
</div>
|
File without changes
|
@@ -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,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 @@
|
|
1
|
+
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 @@
|
|
1
|
+
Fri, 29 Feb 2008 08:16:44 GMT ~ info ~ Logfile created
|
@@ -0,0 +1 @@
|
|
1
|
+
6592
|
@@ -0,0 +1,2040 @@
|
|
1
|
+
Thu, 14 Feb 2008 17:24:06 GMT ~ info ~ Logfile created
|
2
|
+
Thu, 14 Feb 2008 17:58:09 GMT ~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
3
|
+
Thu, 14 Feb 2008 17:58:10 GMT ~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
4
|
+
Thu, 14 Feb 2008 17:58:10 GMT ~ Params: {}
|
5
|
+
Thu, 14 Feb 2008 17:58:10 GMT ~ Cookies: {}
|
6
|
+
Thu, 14 Feb 2008 17:58:10 GMT ~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
7
|
+
Thu, 14 Feb 2008 17:58:10 GMT ~ Setting Up Cookie Store Sessions
|
8
|
+
Thu, 14 Feb 2008 17:58:10 GMT ~ Finalize Cookie Store Session
|
9
|
+
Thu, 14 Feb 2008 17:58:10 GMT ~ {:after_filters_time=>6.0e-06, :before_filters_time=>9.0e-06, :action_time=>0.000996}
|
10
|
+
Thu, 14 Feb 2008 17:58:10 GMT ~ Params: {}
|
11
|
+
Thu, 14 Feb 2008 17:58:10 GMT ~ Cookies: {}
|
12
|
+
Thu, 14 Feb 2008 17:58:10 GMT ~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
13
|
+
Thu, 14 Feb 2008 17:58:10 GMT ~ Setting Up Cookie Store Sessions
|
14
|
+
Thu, 14 Feb 2008 17:58:10 GMT ~ Finalize Cookie Store Session
|
15
|
+
Thu, 14 Feb 2008 17:58:10 GMT ~ {:after_filters_time=>6.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.00037}
|
16
|
+
Thu, 14 Feb 2008 21:20:33 GMT ~ Loaded TEST Environment...
|
17
|
+
Thu, 14 Feb 2008 21:20:33 GMT ~ Compiling routes...
|
18
|
+
Thu, 14 Feb 2008 21:20:33 GMT ~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
19
|
+
Thu, 14 Feb 2008 21:20:34 GMT ~ Loaded TEST Environment...
|
20
|
+
Thu, 14 Feb 2008 21:20:34 GMT ~ Compiling routes...
|
21
|
+
Thu, 14 Feb 2008 21:20:34 GMT ~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
22
|
+
Thu, 14 Feb 2008 21:20:34 GMT ~ Params: {}
|
23
|
+
Thu, 14 Feb 2008 21:20:34 GMT ~ Cookies: {}
|
24
|
+
Thu, 14 Feb 2008 21:20:34 GMT ~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
25
|
+
Thu, 14 Feb 2008 21:20:34 GMT ~ Setting Up Cookie Store Sessions
|
26
|
+
Thu, 14 Feb 2008 21:20:34 GMT ~ Finalize Cookie Store Session
|
27
|
+
Thu, 14 Feb 2008 21:20:34 GMT ~ {:after_filters_time=>6.0e-06, :before_filters_time=>9.0e-06, :action_time=>0.001008}
|
28
|
+
Thu, 14 Feb 2008 21:20:34 GMT ~ Params: {}
|
29
|
+
Thu, 14 Feb 2008 21:20:34 GMT ~ Cookies: {}
|
30
|
+
Thu, 14 Feb 2008 21:20:34 GMT ~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
31
|
+
Thu, 14 Feb 2008 21:20:34 GMT ~ Setting Up Cookie Store Sessions
|
32
|
+
Thu, 14 Feb 2008 21:20:34 GMT ~ Finalize Cookie Store Session
|
33
|
+
Thu, 14 Feb 2008 21:20:34 GMT ~ {:after_filters_time=>5.0e-06, :before_filters_time=>7.0e-06, :action_time=>0.000347}
|
34
|
+
Fri, 15 Feb 2008 18:44:30 GMT ~ Loaded TEST Environment...
|
35
|
+
Fri, 15 Feb 2008 18:44:30 GMT ~ Compiling routes...
|
36
|
+
Fri, 15 Feb 2008 18:44:30 GMT ~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
37
|
+
Fri, 15 Feb 2008 18:44:30 GMT ~ Loaded TEST Environment...
|
38
|
+
Fri, 15 Feb 2008 18:44:30 GMT ~ Compiling routes...
|
39
|
+
Fri, 15 Feb 2008 18:44:31 GMT ~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
40
|
+
Fri, 15 Feb 2008 18:44:31 GMT ~ Params: {}
|
41
|
+
Fri, 15 Feb 2008 18:44:31 GMT ~ Cookies: {}
|
42
|
+
Fri, 15 Feb 2008 18:44:31 GMT ~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
43
|
+
Fri, 15 Feb 2008 18:44:31 GMT ~ Setting Up Cookie Store Sessions
|
44
|
+
Fri, 15 Feb 2008 18:44:31 GMT ~ Finalize Cookie Store Session
|
45
|
+
Fri, 15 Feb 2008 18:44:31 GMT ~ {:after_filters_time=>7.0e-06, :before_filters_time=>1.0e-05, :action_time=>0.000981}
|
46
|
+
Fri, 15 Feb 2008 18:44:31 GMT ~ Params: {}
|
47
|
+
Fri, 15 Feb 2008 18:44:31 GMT ~ Cookies: {}
|
48
|
+
Fri, 15 Feb 2008 18:44:31 GMT ~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
49
|
+
Fri, 15 Feb 2008 18:44:31 GMT ~ Setting Up Cookie Store Sessions
|
50
|
+
Fri, 15 Feb 2008 18:44:31 GMT ~ Finalize Cookie Store Session
|
51
|
+
Fri, 15 Feb 2008 18:44:31 GMT ~ {:after_filters_time=>6.0e-06, :before_filters_time=>7.0e-06, :action_time=>0.000376}
|
52
|
+
Sun, 17 Feb 2008 15:32:24 GMT ~ Loaded TEST Environment...
|
53
|
+
Sun, 17 Feb 2008 15:32:24 GMT ~ Compiling routes...
|
54
|
+
Sun, 17 Feb 2008 15:32:24 GMT ~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
55
|
+
Sun, 17 Feb 2008 15:32:25 GMT ~ Loaded TEST Environment...
|
56
|
+
Sun, 17 Feb 2008 15:32:25 GMT ~ Compiling routes...
|
57
|
+
Sun, 17 Feb 2008 15:32:25 GMT ~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
58
|
+
Sun, 17 Feb 2008 15:32:25 GMT ~ Params: {}
|
59
|
+
Sun, 17 Feb 2008 15:32:25 GMT ~ Cookies: {}
|
60
|
+
Sun, 17 Feb 2008 15:32:25 GMT ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
|
61
|
+
Sun, 17 Feb 2008 15:32:25 GMT ~ Setting Up Cookie Store Sessions
|
62
|
+
Sun, 17 Feb 2008 15:32:25 GMT ~ Finalize Cookie Store Session
|
63
|
+
Sun, 17 Feb 2008 15:32:25 GMT ~ {:before_filters_time=>9.0e-06, :action_time=>0.000985, :after_filters_time=>8.0e-06}
|
64
|
+
Sun, 17 Feb 2008 15:32:25 GMT ~ Params: {}
|
65
|
+
Sun, 17 Feb 2008 15:32:25 GMT ~ Cookies: {}
|
66
|
+
Sun, 17 Feb 2008 15:32:25 GMT ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
|
67
|
+
Sun, 17 Feb 2008 15:32:25 GMT ~ Setting Up Cookie Store Sessions
|
68
|
+
Sun, 17 Feb 2008 15:32:25 GMT ~ Finalize Cookie Store Session
|
69
|
+
Sun, 17 Feb 2008 15:32:25 GMT ~ {:before_filters_time=>7.0e-06, :action_time=>0.000415, :after_filters_time=>7.0e-06}
|
70
|
+
Sun, 17 Feb 2008 16:11:53 GMT ~ Loaded TEST Environment...
|
71
|
+
Sun, 17 Feb 2008 16:11:53 GMT ~ Compiling routes...
|
72
|
+
Sun, 17 Feb 2008 16:11:53 GMT ~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
73
|
+
Sun, 17 Feb 2008 16:11:54 GMT ~ Loaded TEST Environment...
|
74
|
+
Sun, 17 Feb 2008 16:11:54 GMT ~ Compiling routes...
|
75
|
+
Sun, 17 Feb 2008 16:11:54 GMT ~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
76
|
+
Sun, 17 Feb 2008 16:11:54 GMT ~ Params: {}
|
77
|
+
Sun, 17 Feb 2008 16:11:54 GMT ~ Cookies: {}
|
78
|
+
Sun, 17 Feb 2008 16:11:54 GMT ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
|
79
|
+
Sun, 17 Feb 2008 16:11:54 GMT ~ Setting Up Cookie Store Sessions
|
80
|
+
Sun, 17 Feb 2008 16:11:54 GMT ~ Finalize Cookie Store Session
|
81
|
+
Sun, 17 Feb 2008 16:11:54 GMT ~ {:before_filters_time=>1.1e-05, :action_time=>0.000983, :after_filters_time=>8.0e-06}
|
82
|
+
Sun, 17 Feb 2008 16:11:54 GMT ~ Params: {}
|
83
|
+
Sun, 17 Feb 2008 16:11:54 GMT ~ Cookies: {}
|
84
|
+
Sun, 17 Feb 2008 16:11:54 GMT ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
|
85
|
+
Sun, 17 Feb 2008 16:11:54 GMT ~ Setting Up Cookie Store Sessions
|
86
|
+
Sun, 17 Feb 2008 16:11:54 GMT ~ Finalize Cookie Store Session
|
87
|
+
Sun, 17 Feb 2008 16:11:54 GMT ~ {:before_filters_time=>6.0e-06, :action_time=>0.000351, :after_filters_time=>5.0e-06}
|
88
|
+
Sun, 17 Feb 2008 16:21:28 GMT ~ Loaded TEST Environment...
|
89
|
+
Sun, 17 Feb 2008 16:21:28 GMT ~ Compiling routes...
|
90
|
+
Sun, 17 Feb 2008 16:21:28 GMT ~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
91
|
+
Sun, 17 Feb 2008 16:21:29 GMT ~ Loaded TEST Environment...
|
92
|
+
Sun, 17 Feb 2008 16:21:29 GMT ~ Compiling routes...
|
93
|
+
Sun, 17 Feb 2008 16:21:29 GMT ~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
94
|
+
Sun, 17 Feb 2008 16:21:29 GMT ~ Params: {}
|
95
|
+
Sun, 17 Feb 2008 16:21:29 GMT ~ Cookies: {}
|
96
|
+
Sun, 17 Feb 2008 16:21:29 GMT ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
|
97
|
+
Sun, 17 Feb 2008 16:21:29 GMT ~ Setting Up Cookie Store Sessions
|
98
|
+
Sun, 17 Feb 2008 16:21:29 GMT ~ Finalize Cookie Store Session
|
99
|
+
Sun, 17 Feb 2008 16:21:29 GMT ~ {:before_filters_time=>0.003175, :action_time=>0.004306, :after_filters_time=>8.0e-06}
|
100
|
+
Sun, 17 Feb 2008 16:21:29 GMT ~ Params: {}
|
101
|
+
Sun, 17 Feb 2008 16:21:29 GMT ~ Cookies: {}
|
102
|
+
Sun, 17 Feb 2008 16:21:29 GMT ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
|
103
|
+
Sun, 17 Feb 2008 16:21:29 GMT ~ Setting Up Cookie Store Sessions
|
104
|
+
Sun, 17 Feb 2008 16:21:29 GMT ~ Finalize Cookie Store Session
|
105
|
+
Sun, 17 Feb 2008 16:21:29 GMT ~ {:before_filters_time=>8.0e-06, :action_time=>0.000482, :after_filters_time=>6.0e-06}
|
106
|
+
Mon, 25 Feb 2008 23:08:33 GMT ~ Loaded TEST Environment...
|
107
|
+
Mon, 25 Feb 2008 23:08:33 GMT ~ Compiling routes...
|
108
|
+
Mon, 25 Feb 2008 23:08:43 GMT ~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
109
|
+
Mon, 25 Feb 2008 23:09:38 GMT ~ Loaded TEST Environment...
|
110
|
+
Mon, 25 Feb 2008 23:09:38 GMT ~ Compiling routes...
|
111
|
+
Mon, 25 Feb 2008 23:09:38 GMT ~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
112
|
+
Mon, 25 Feb 2008 23:09:39 GMT ~ Loaded TEST Environment...
|
113
|
+
Mon, 25 Feb 2008 23:09:39 GMT ~ Compiling routes...
|
114
|
+
Mon, 25 Feb 2008 23:09:39 GMT ~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
115
|
+
Mon, 25 Feb 2008 23:09:39 GMT ~ Params: {}
|
116
|
+
Mon, 25 Feb 2008 23:09:39 GMT ~ Cookies: {}
|
117
|
+
Mon, 25 Feb 2008 23:09:39 GMT ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
|
118
|
+
Mon, 25 Feb 2008 23:09:39 GMT ~ Setting Up Cookie Store Sessions
|
119
|
+
Mon, 25 Feb 2008 23:09:39 GMT ~ Finalize Cookie Store Session
|
120
|
+
Mon, 25 Feb 2008 23:09:39 GMT ~ {:before_filters_time=>1.0e-05, :action_time=>0.001018, :after_filters_time=>6.0e-06}
|
121
|
+
Mon, 25 Feb 2008 23:09:39 GMT ~ Params: {}
|
122
|
+
Mon, 25 Feb 2008 23:09:39 GMT ~ Cookies: {}
|
123
|
+
Mon, 25 Feb 2008 23:09:39 GMT ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
|
124
|
+
Mon, 25 Feb 2008 23:09:39 GMT ~ Setting Up Cookie Store Sessions
|
125
|
+
Mon, 25 Feb 2008 23:09:39 GMT ~ Finalize Cookie Store Session
|
126
|
+
Mon, 25 Feb 2008 23:09:39 GMT ~ {:before_filters_time=>7.0e-06, :action_time=>0.000357, :after_filters_time=>5.0e-06}
|
127
|
+
Mon, 25 Feb 2008 23:11:41 GMT ~ Loaded TEST Environment...
|
128
|
+
Mon, 25 Feb 2008 23:11:41 GMT ~ Compiling routes...
|
129
|
+
Mon, 25 Feb 2008 23:11:41 GMT ~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
130
|
+
Mon, 25 Feb 2008 23:11:42 GMT ~ Loaded TEST Environment...
|
131
|
+
Mon, 25 Feb 2008 23:11:42 GMT ~ Compiling routes...
|
132
|
+
Mon, 25 Feb 2008 23:11:42 GMT ~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
133
|
+
Mon, 25 Feb 2008 23:11:42 GMT ~ Params: {}
|
134
|
+
Mon, 25 Feb 2008 23:11:42 GMT ~ Cookies: {}
|
135
|
+
Mon, 25 Feb 2008 23:11:42 GMT ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
|
136
|
+
Mon, 25 Feb 2008 23:11:42 GMT ~ Setting Up Cookie Store Sessions
|
137
|
+
Mon, 25 Feb 2008 23:11:42 GMT ~ Finalize Cookie Store Session
|
138
|
+
Mon, 25 Feb 2008 23:11:42 GMT ~ {:before_filters_time=>1.0e-05, :action_time=>0.001039, :after_filters_time=>6.0e-06}
|
139
|
+
Mon, 25 Feb 2008 23:11:42 GMT ~ Params: {}
|
140
|
+
Mon, 25 Feb 2008 23:11:42 GMT ~ Cookies: {}
|
141
|
+
Mon, 25 Feb 2008 23:11:42 GMT ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
|
142
|
+
Mon, 25 Feb 2008 23:11:42 GMT ~ Setting Up Cookie Store Sessions
|
143
|
+
Mon, 25 Feb 2008 23:11:42 GMT ~ Finalize Cookie Store Session
|
144
|
+
Mon, 25 Feb 2008 23:11:42 GMT ~ {:before_filters_time=>6.0e-06, :action_time=>0.000353, :after_filters_time=>5.0e-06}
|
145
|
+
Mon, 25 Feb 2008 23:13:09 GMT ~ Loaded TEST Environment...
|
146
|
+
Mon, 25 Feb 2008 23:13:09 GMT ~ Compiling routes...
|
147
|
+
Mon, 25 Feb 2008 23:13:10 GMT ~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
148
|
+
Mon, 25 Feb 2008 23:13:12 GMT ~ Loaded TEST Environment...
|
149
|
+
Mon, 25 Feb 2008 23:13:12 GMT ~ Compiling routes...
|
150
|
+
Mon, 25 Feb 2008 23:13:12 GMT ~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
151
|
+
Mon, 25 Feb 2008 23:13:12 GMT ~ Params: {}
|
152
|
+
Mon, 25 Feb 2008 23:13:12 GMT ~ Cookies: {}
|
153
|
+
Mon, 25 Feb 2008 23:13:12 GMT ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
|
154
|
+
Mon, 25 Feb 2008 23:13:12 GMT ~ Setting Up Cookie Store Sessions
|
155
|
+
Mon, 25 Feb 2008 23:13:12 GMT ~ Finalize Cookie Store Session
|
156
|
+
Mon, 25 Feb 2008 23:13:12 GMT ~ {:before_filters_time=>1.0e-05, :action_time=>0.001013, :after_filters_time=>6.0e-06}
|
157
|
+
Mon, 25 Feb 2008 23:13:12 GMT ~ Params: {}
|
158
|
+
Mon, 25 Feb 2008 23:13:12 GMT ~ Cookies: {}
|
159
|
+
Mon, 25 Feb 2008 23:13:12 GMT ~ Routed to: {:controller=>"foo", :format=>nil, :action=>"bar", :id=>"54"}
|
160
|
+
Mon, 25 Feb 2008 23:13:12 GMT ~ Setting Up Cookie Store Sessions
|
161
|
+
Mon, 25 Feb 2008 23:13:12 GMT ~ Finalize Cookie Store Session
|
162
|
+
Mon, 25 Feb 2008 23:13:12 GMT ~ {:before_filters_time=>6.0e-06, :action_time=>0.000352, :after_filters_time=>5.0e-06}
|
163
|
+
~ Loaded TEST Environment...
|
164
|
+
~ Compiling routes...
|
165
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
166
|
+
~ Loaded TEST Environment...
|
167
|
+
~ Compiling routes...
|
168
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
169
|
+
~ Params: {}
|
170
|
+
~ Cookies: {}
|
171
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
172
|
+
~ Setting Up Cookie Store Sessions
|
173
|
+
~ Finalize Cookie Store Session
|
174
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.00093, :before_filters_time=>6.0e-06}
|
175
|
+
~ Params: {}
|
176
|
+
~ Cookies: {}
|
177
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
178
|
+
~ Setting Up Cookie Store Sessions
|
179
|
+
~ Finalize Cookie Store Session
|
180
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000278, :before_filters_time=>6.0e-06}
|
181
|
+
~ Loaded TEST Environment...
|
182
|
+
~ Compiling routes...
|
183
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
184
|
+
~ Loaded TEST Environment...
|
185
|
+
~ Compiling routes...
|
186
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
187
|
+
~ Params: {}
|
188
|
+
~ Cookies: {}
|
189
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
190
|
+
~ Setting Up Cookie Store Sessions
|
191
|
+
~ Finalize Cookie Store Session
|
192
|
+
~ {:action_time=>0.00093, :after_filters_time=>6.0e-06, :before_filters_time=>7.0e-06}
|
193
|
+
~ Params: {}
|
194
|
+
~ Cookies: {}
|
195
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
196
|
+
~ Setting Up Cookie Store Sessions
|
197
|
+
~ Finalize Cookie Store Session
|
198
|
+
~ {:action_time=>0.000271, :after_filters_time=>5.0e-06, :before_filters_time=>6.0e-06}
|
199
|
+
~ Loaded TEST Environment...
|
200
|
+
~ Compiling routes...
|
201
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
202
|
+
~ Loaded TEST Environment...
|
203
|
+
~ Compiling routes...
|
204
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
205
|
+
~ Params: {}
|
206
|
+
~ Cookies: {}
|
207
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
208
|
+
~ Setting Up Cookie Store Sessions
|
209
|
+
~ Finalize Cookie Store Session
|
210
|
+
~ {:action_time=>0.000922, :after_filters_time=>6.0e-06, :before_filters_time=>7.0e-06}
|
211
|
+
~ Params: {}
|
212
|
+
~ Cookies: {}
|
213
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
214
|
+
~ Setting Up Cookie Store Sessions
|
215
|
+
~ Finalize Cookie Store Session
|
216
|
+
~ {:action_time=>0.00027, :after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06}
|
217
|
+
~ Loaded TEST Environment...
|
218
|
+
~ Compiling routes...
|
219
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
220
|
+
~ Loaded TEST Environment...
|
221
|
+
~ Compiling routes...
|
222
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
223
|
+
~ Params: {}
|
224
|
+
~ Cookies: {}
|
225
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
226
|
+
~ Setting Up Cookie Store Sessions
|
227
|
+
~ Finalize Cookie Store Session
|
228
|
+
~ {:action_time=>0.000921, :after_filters_time=>6.0e-06, :before_filters_time=>7.0e-06}
|
229
|
+
~ Params: {}
|
230
|
+
~ Cookies: {}
|
231
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
232
|
+
~ Setting Up Cookie Store Sessions
|
233
|
+
~ Finalize Cookie Store Session
|
234
|
+
~ {:action_time=>0.00027, :after_filters_time=>5.0e-06, :before_filters_time=>6.0e-06}
|
235
|
+
~ Loaded TEST Environment...
|
236
|
+
~ Compiling routes...
|
237
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
238
|
+
~ Loaded TEST Environment...
|
239
|
+
~ Compiling routes...
|
240
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
241
|
+
~ Params: {}
|
242
|
+
~ Cookies: {}
|
243
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
244
|
+
~ Setting Up Cookie Store Sessions
|
245
|
+
~ Finalize Cookie Store Session
|
246
|
+
~ {:action_time=>0.000918, :after_filters_time=>6.0e-06, :before_filters_time=>8.0e-06}
|
247
|
+
~ Params: {}
|
248
|
+
~ Cookies: {}
|
249
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
250
|
+
~ Setting Up Cookie Store Sessions
|
251
|
+
~ Finalize Cookie Store Session
|
252
|
+
~ {:action_time=>0.000327, :after_filters_time=>5.0e-06, :before_filters_time=>7.0e-06}
|
253
|
+
~ {:action_time=>0.019352, :before_filters_time=>8.0e-06, :after_filters_time=>1.5e-05}
|
254
|
+
~ {:action_time=>0.000821, :before_filters_time=>1.0e-05, :after_filters_time=>8.0e-06}
|
255
|
+
~ {:action_time=>0.000653, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
|
256
|
+
~ {:action_time=>0.000612, :before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06}
|
257
|
+
~ {:action_time=>0.000572, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
|
258
|
+
~ {:action_time=>0.000766, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
|
259
|
+
~ {:action_time=>0.000457, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06}
|
260
|
+
~ {:action_time=>0.000416, :before_filters_time=>7.0e-06, :after_filters_time=>5.0e-06}
|
261
|
+
~ {:action_time=>0.000828, :before_filters_time=>7.0e-06, :after_filters_time=>8.0e-06}
|
262
|
+
~ {:action_time=>0.000524, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
|
263
|
+
~ {:action_time=>0.000528, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
|
264
|
+
~ {:action_time=>0.000479, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
|
265
|
+
~ {:action_time=>0.000452, :before_filters_time=>5.0e-06, :after_filters_time=>6.0e-06}
|
266
|
+
~ {:action_time=>0.0006, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
267
|
+
~ {:action_time=>0.000355, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
268
|
+
~ {:action_time=>0.000356, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
269
|
+
~ Loaded TEST Environment...
|
270
|
+
~ Compiling routes...
|
271
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
272
|
+
~ Params: {}
|
273
|
+
~ Cookies: {}
|
274
|
+
~ No routes match the request, - (Merb::ControllerExceptions::NotFound)
|
275
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:36:in `handle'
|
276
|
+
./spec/private/dispatch/dispatch_spec.rb:11
|
277
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
278
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
279
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
280
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
281
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
282
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
283
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
284
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
285
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
286
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
287
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
288
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
289
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
290
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
291
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
292
|
+
/usr/local/bin/spec:19:in `load'
|
293
|
+
/usr/local/bin/spec:19
|
294
|
+
~ Setting Up Cookie Store Sessions
|
295
|
+
~ Setting Up Cookie Store Sessions
|
296
|
+
~ Finalize Cookie Store Session
|
297
|
+
~ Params: {}
|
298
|
+
~ Cookies: {}
|
299
|
+
~ Routed to: {:action=>"raise_not_acceptable", :controller=>"foo", :format=>nil, :id=>nil}
|
300
|
+
~ Setting Up Cookie Store Sessions
|
301
|
+
~ Merb::ControllerExceptions::NotAcceptable - (Merb::ControllerExceptions::NotAcceptable)
|
302
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:18:in `raise_not_acceptable'
|
303
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
304
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
305
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
306
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
307
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
308
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
309
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
310
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
311
|
+
./spec/private/dispatch/dispatch_spec.rb:17
|
312
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
313
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
314
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
315
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
316
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
317
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
318
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
319
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
320
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
321
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
322
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
323
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
324
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
325
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
326
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
327
|
+
/usr/local/bin/spec:19:in `load'
|
328
|
+
/usr/local/bin/spec:19
|
329
|
+
~ Setting Up Cookie Store Sessions
|
330
|
+
~ Finalize Cookie Store Session
|
331
|
+
~ Params: {}
|
332
|
+
~ Cookies: {}
|
333
|
+
~ Routed to: {:action=>"raise_conflict", :controller=>"foo", :format=>nil, :id=>nil}
|
334
|
+
~ Setting Up Cookie Store Sessions
|
335
|
+
~ Merb::ControllerExceptions::Conflict - (Merb::ControllerExceptions::Conflict)
|
336
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:14:in `raise_conflict'
|
337
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
338
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
339
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
340
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
341
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
342
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
343
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
344
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
345
|
+
./spec/private/dispatch/dispatch_spec.rb:23
|
346
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
347
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
348
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
349
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
350
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
351
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
352
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
353
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
354
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
355
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
356
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
357
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
358
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
359
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
360
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
361
|
+
/usr/local/bin/spec:19:in `load'
|
362
|
+
/usr/local/bin/spec:19
|
363
|
+
~ Setting Up Cookie Store Sessions
|
364
|
+
~ Finalize Cookie Store Session
|
365
|
+
~ Params: {}
|
366
|
+
~ Cookies: {}
|
367
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
368
|
+
~ Setting Up Cookie Store Sessions
|
369
|
+
~ Finalize Cookie Store Session
|
370
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000393}
|
371
|
+
~ Params: {}
|
372
|
+
~ Cookies: {}
|
373
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
374
|
+
~ Setting Up Cookie Store Sessions
|
375
|
+
~ Finalize Cookie Store Session
|
376
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000362}
|
377
|
+
~ {:action_time=>0.000901, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
|
378
|
+
~ {:action_time=>0.000708, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
|
379
|
+
~ {:action_time=>0.000496, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
|
380
|
+
~ {:action_time=>0.000471, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
|
381
|
+
~ {:action_time=>0.000452, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
382
|
+
~ {:action_time=>0.000606, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
383
|
+
~ {:action_time=>0.000354, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
384
|
+
~ {:action_time=>0.00037, :before_filters_time=>6.0e-06, :after_filters_time=>4.0e-06}
|
385
|
+
~ Loaded TEST Environment...
|
386
|
+
~ Compiling routes...
|
387
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
388
|
+
~ Params: {}
|
389
|
+
~ Cookies: {}
|
390
|
+
~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
|
391
|
+
~ Setting Up Cookie Store Sessions
|
392
|
+
~ Finalize Cookie Store Session
|
393
|
+
~ {:action_time=>0.00097, :before_filters_time=>8.0e-06, :after_filters_time=>8.0e-06}
|
394
|
+
~ Params: {}
|
395
|
+
~ Cookies: {}
|
396
|
+
~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
|
397
|
+
~ Setting Up Cookie Store Sessions
|
398
|
+
~ Finalize Cookie Store Session
|
399
|
+
~ {:action_time=>0.000304, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06}
|
400
|
+
~ Loaded TEST Environment...
|
401
|
+
~ Compiling routes...
|
402
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
403
|
+
~ Params: {}
|
404
|
+
~ Cookies: {}
|
405
|
+
~ No routes match the request, - (Merb::ControllerExceptions::NotFound)
|
406
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:36:in `handle'
|
407
|
+
./spec/private/dispatch/dispatch_spec.rb:11
|
408
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
409
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
410
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
411
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
412
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
413
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
414
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
415
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
416
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
417
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
418
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
419
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
420
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
421
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
422
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
423
|
+
/usr/local/bin/spec:19:in `load'
|
424
|
+
/usr/local/bin/spec:19
|
425
|
+
~ Setting Up Cookie Store Sessions
|
426
|
+
~ Setting Up Cookie Store Sessions
|
427
|
+
~ Finalize Cookie Store Session
|
428
|
+
~ Params: {}
|
429
|
+
~ Cookies: {}
|
430
|
+
~ Routed to: {:action=>"raise_not_acceptable", :controller=>"foo", :format=>nil, :id=>nil}
|
431
|
+
~ Setting Up Cookie Store Sessions
|
432
|
+
~ Merb::ControllerExceptions::NotAcceptable - (Merb::ControllerExceptions::NotAcceptable)
|
433
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:18:in `raise_not_acceptable'
|
434
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
435
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
436
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
437
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
438
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
439
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
440
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
441
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
442
|
+
./spec/private/dispatch/dispatch_spec.rb:17
|
443
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
444
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
445
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
446
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
447
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
448
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
449
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
450
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
451
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
452
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
453
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
454
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
455
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
456
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
457
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
458
|
+
/usr/local/bin/spec:19:in `load'
|
459
|
+
/usr/local/bin/spec:19
|
460
|
+
~ Setting Up Cookie Store Sessions
|
461
|
+
~ Finalize Cookie Store Session
|
462
|
+
~ Params: {}
|
463
|
+
~ Cookies: {}
|
464
|
+
~ Routed to: {:action=>"raise_conflict", :controller=>"foo", :format=>nil, :id=>nil}
|
465
|
+
~ Setting Up Cookie Store Sessions
|
466
|
+
~ Merb::ControllerExceptions::Conflict - (Merb::ControllerExceptions::Conflict)
|
467
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:14:in `raise_conflict'
|
468
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
469
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
470
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
471
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
472
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
473
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
474
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
475
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
476
|
+
./spec/private/dispatch/dispatch_spec.rb:23
|
477
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
478
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
479
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
480
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
481
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
482
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
483
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
484
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
485
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
486
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
487
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
488
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
489
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
490
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
491
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
492
|
+
/usr/local/bin/spec:19:in `load'
|
493
|
+
/usr/local/bin/spec:19
|
494
|
+
~ Setting Up Cookie Store Sessions
|
495
|
+
~ Finalize Cookie Store Session
|
496
|
+
~ Params: {}
|
497
|
+
~ Cookies: {}
|
498
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
499
|
+
~ Setting Up Cookie Store Sessions
|
500
|
+
~ Finalize Cookie Store Session
|
501
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.00039}
|
502
|
+
~ Params: {}
|
503
|
+
~ Cookies: {}
|
504
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
505
|
+
~ Setting Up Cookie Store Sessions
|
506
|
+
~ Finalize Cookie Store Session
|
507
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000333}
|
508
|
+
~ {:action_time=>0.000788, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
|
509
|
+
~ {:action_time=>0.000474, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
|
510
|
+
~ {:action_time=>0.000481, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
|
511
|
+
~ {:action_time=>0.000469, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
|
512
|
+
~ {:action_time=>0.000454, :before_filters_time=>4.0e-06, :after_filters_time=>5.0e-06}
|
513
|
+
~ {:action_time=>0.000746, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
514
|
+
~ {:action_time=>0.000375, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
515
|
+
~ {:action_time=>0.000445, :before_filters_time=>8.0e-06, :after_filters_time=>5.0e-06}
|
516
|
+
~ Loaded TEST Environment...
|
517
|
+
~ Compiling routes...
|
518
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
519
|
+
~ Params: {}
|
520
|
+
~ Cookies: {}
|
521
|
+
~ No routes match the request, - (Merb::ControllerExceptions::NotFound)
|
522
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:36:in `handle'
|
523
|
+
./spec/private/dispatch/dispatch_spec.rb:11
|
524
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
525
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
526
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
527
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
528
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
529
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
530
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
531
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
532
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
533
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
534
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
535
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
536
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
537
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
538
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
539
|
+
/usr/local/bin/spec:19:in `load'
|
540
|
+
/usr/local/bin/spec:19
|
541
|
+
~ Setting Up Cookie Store Sessions
|
542
|
+
~ Setting Up Cookie Store Sessions
|
543
|
+
~ Finalize Cookie Store Session
|
544
|
+
~ Params: {}
|
545
|
+
~ Cookies: {}
|
546
|
+
~ Routed to: {:action=>"raise_not_acceptable", :controller=>"foo", :format=>nil, :id=>nil}
|
547
|
+
~ Setting Up Cookie Store Sessions
|
548
|
+
~ Merb::ControllerExceptions::NotAcceptable - (Merb::ControllerExceptions::NotAcceptable)
|
549
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:18:in `raise_not_acceptable'
|
550
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
551
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
552
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
553
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
554
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
555
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
556
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
557
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
558
|
+
./spec/private/dispatch/dispatch_spec.rb:17
|
559
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
560
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
561
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
562
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
563
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
564
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
565
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
566
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
567
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
568
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
569
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
570
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
571
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
572
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
573
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
574
|
+
/usr/local/bin/spec:19:in `load'
|
575
|
+
/usr/local/bin/spec:19
|
576
|
+
~ Setting Up Cookie Store Sessions
|
577
|
+
~ Finalize Cookie Store Session
|
578
|
+
~ Params: {}
|
579
|
+
~ Cookies: {}
|
580
|
+
~ Routed to: {:action=>"raise_conflict", :controller=>"foo", :format=>nil, :id=>nil}
|
581
|
+
~ Setting Up Cookie Store Sessions
|
582
|
+
~ Merb::ControllerExceptions::Conflict - (Merb::ControllerExceptions::Conflict)
|
583
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:14:in `raise_conflict'
|
584
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
585
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
586
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
587
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
588
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
589
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
590
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
591
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
592
|
+
./spec/private/dispatch/dispatch_spec.rb:23
|
593
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
594
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
595
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
596
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
597
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
598
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
599
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
600
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
601
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
602
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
603
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
604
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
605
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
606
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
607
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
608
|
+
/usr/local/bin/spec:19:in `load'
|
609
|
+
/usr/local/bin/spec:19
|
610
|
+
~ Setting Up Cookie Store Sessions
|
611
|
+
~ Finalize Cookie Store Session
|
612
|
+
~ Params: {}
|
613
|
+
~ Cookies: {}
|
614
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
615
|
+
~ Setting Up Cookie Store Sessions
|
616
|
+
~ Finalize Cookie Store Session
|
617
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.00039}
|
618
|
+
~ Params: {}
|
619
|
+
~ Cookies: {}
|
620
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
621
|
+
~ Setting Up Cookie Store Sessions
|
622
|
+
~ Finalize Cookie Store Session
|
623
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000333}
|
624
|
+
~ {:action_time=>0.002075, :before_filters_time=>7.0e-06, :after_filters_time=>7.0e-06}
|
625
|
+
~ {:action_time=>0.000529, :before_filters_time=>7.0e-06, :after_filters_time=>5.0e-06}
|
626
|
+
~ {:action_time=>0.00053, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
|
627
|
+
~ {:action_time=>0.000477, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
|
628
|
+
~ {:action_time=>0.000454, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
629
|
+
~ {:action_time=>0.0006, :before_filters_time=>4.0e-06, :after_filters_time=>5.0e-06}
|
630
|
+
~ {:action_time=>0.000357, :before_filters_time=>4.0e-06, :after_filters_time=>5.0e-06}
|
631
|
+
~ {:action_time=>0.000359, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
|
632
|
+
~ Loaded TEST Environment...
|
633
|
+
~ Compiling routes...
|
634
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
635
|
+
~ Params: {}
|
636
|
+
~ Cookies: {}
|
637
|
+
~ No routes match the request, - (Merb::ControllerExceptions::NotFound)
|
638
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:36:in `handle'
|
639
|
+
./spec/private/dispatch/dispatch_spec.rb:11
|
640
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
641
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
642
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
643
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
644
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
645
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
646
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
647
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
648
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
649
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
650
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
651
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
652
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
653
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
654
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
655
|
+
/usr/local/bin/spec:19:in `load'
|
656
|
+
/usr/local/bin/spec:19
|
657
|
+
~ Setting Up Cookie Store Sessions
|
658
|
+
~ Setting Up Cookie Store Sessions
|
659
|
+
~ Finalize Cookie Store Session
|
660
|
+
~ Params: {}
|
661
|
+
~ Cookies: {}
|
662
|
+
~ Routed to: {:action=>"raise_not_acceptable", :controller=>"foo", :format=>nil, :id=>nil}
|
663
|
+
~ Setting Up Cookie Store Sessions
|
664
|
+
~ Merb::ControllerExceptions::NotAcceptable - (Merb::ControllerExceptions::NotAcceptable)
|
665
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:18:in `raise_not_acceptable'
|
666
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
667
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
668
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
669
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
670
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
671
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
672
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
673
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
674
|
+
./spec/private/dispatch/dispatch_spec.rb:17
|
675
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
676
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
677
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
678
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
679
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
680
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
681
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
682
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
683
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
684
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
685
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
686
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
687
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
688
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
689
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
690
|
+
/usr/local/bin/spec:19:in `load'
|
691
|
+
/usr/local/bin/spec:19
|
692
|
+
~ Setting Up Cookie Store Sessions
|
693
|
+
~ Finalize Cookie Store Session
|
694
|
+
~ Params: {}
|
695
|
+
~ Cookies: {}
|
696
|
+
~ Routed to: {:action=>"raise_conflict", :controller=>"foo", :format=>nil, :id=>nil}
|
697
|
+
~ Setting Up Cookie Store Sessions
|
698
|
+
~ Merb::ControllerExceptions::Conflict - (Merb::ControllerExceptions::Conflict)
|
699
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:14:in `raise_conflict'
|
700
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
701
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
702
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
703
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
704
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
705
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
706
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
707
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
708
|
+
./spec/private/dispatch/dispatch_spec.rb:23
|
709
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
710
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
711
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
712
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
713
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
714
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
715
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
716
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
717
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
718
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
719
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
720
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
721
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
722
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
723
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
724
|
+
/usr/local/bin/spec:19:in `load'
|
725
|
+
/usr/local/bin/spec:19
|
726
|
+
~ Setting Up Cookie Store Sessions
|
727
|
+
~ Finalize Cookie Store Session
|
728
|
+
~ Params: {}
|
729
|
+
~ Cookies: {}
|
730
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
731
|
+
~ Setting Up Cookie Store Sessions
|
732
|
+
~ Finalize Cookie Store Session
|
733
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000388}
|
734
|
+
~ Params: {}
|
735
|
+
~ Cookies: {}
|
736
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
737
|
+
~ Setting Up Cookie Store Sessions
|
738
|
+
~ Finalize Cookie Store Session
|
739
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000447}
|
740
|
+
~ {:action_time=>0.000805, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
|
741
|
+
~ {:action_time=>0.000487, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
|
742
|
+
~ {:action_time=>0.000491, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
|
743
|
+
~ {:action_time=>0.000528, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
|
744
|
+
~ {:action_time=>0.000835, :before_filters_time=>5.0e-06, :after_filters_time=>1.2e-05}
|
745
|
+
~ {:action_time=>0.000634, :before_filters_time=>5.0e-06, :after_filters_time=>6.0e-06}
|
746
|
+
~ {:action_time=>0.000357, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
747
|
+
~ {:action_time=>0.000359, :before_filters_time=>7.0e-06, :after_filters_time=>5.0e-06}
|
748
|
+
~ Loaded TEST Environment...
|
749
|
+
~ Compiling routes...
|
750
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
751
|
+
~ Params: {}
|
752
|
+
~ Cookies: {}
|
753
|
+
~ No routes match the request, - (Merb::ControllerExceptions::NotFound)
|
754
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:36:in `handle'
|
755
|
+
./spec/private/dispatch/dispatch_spec.rb:11
|
756
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
757
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
758
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
759
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
760
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
761
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
762
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
763
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
764
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
765
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
766
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
767
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
768
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
769
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
770
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
771
|
+
/usr/local/bin/spec:19:in `load'
|
772
|
+
/usr/local/bin/spec:19
|
773
|
+
~ Setting Up Cookie Store Sessions
|
774
|
+
~ Setting Up Cookie Store Sessions
|
775
|
+
~ Finalize Cookie Store Session
|
776
|
+
~ Params: {}
|
777
|
+
~ Cookies: {}
|
778
|
+
~ Routed to: {:action=>"raise_not_acceptable", :controller=>"foo", :format=>nil, :id=>nil}
|
779
|
+
~ Setting Up Cookie Store Sessions
|
780
|
+
~ Merb::ControllerExceptions::NotAcceptable - (Merb::ControllerExceptions::NotAcceptable)
|
781
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:18:in `raise_not_acceptable'
|
782
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
783
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
784
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
785
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
786
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
787
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
788
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
789
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
790
|
+
./spec/private/dispatch/dispatch_spec.rb:17
|
791
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
792
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
793
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
794
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
795
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
796
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
797
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
798
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
799
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
800
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
801
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
802
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
803
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
804
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
805
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
806
|
+
/usr/local/bin/spec:19:in `load'
|
807
|
+
/usr/local/bin/spec:19
|
808
|
+
~ Setting Up Cookie Store Sessions
|
809
|
+
~ Finalize Cookie Store Session
|
810
|
+
~ Params: {}
|
811
|
+
~ Cookies: {}
|
812
|
+
~ Routed to: {:action=>"raise_conflict", :controller=>"foo", :format=>nil, :id=>nil}
|
813
|
+
~ Setting Up Cookie Store Sessions
|
814
|
+
~ Merb::ControllerExceptions::Conflict - (Merb::ControllerExceptions::Conflict)
|
815
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:14:in `raise_conflict'
|
816
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
817
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
818
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
819
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
820
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
821
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
822
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
823
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
824
|
+
./spec/private/dispatch/dispatch_spec.rb:23
|
825
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
826
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
827
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
828
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
829
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
830
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
831
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
832
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
833
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
834
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
835
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
836
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
837
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
838
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
839
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
840
|
+
/usr/local/bin/spec:19:in `load'
|
841
|
+
/usr/local/bin/spec:19
|
842
|
+
~ Setting Up Cookie Store Sessions
|
843
|
+
~ Finalize Cookie Store Session
|
844
|
+
~ Params: {}
|
845
|
+
~ Cookies: {}
|
846
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
847
|
+
~ Setting Up Cookie Store Sessions
|
848
|
+
~ Finalize Cookie Store Session
|
849
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000391}
|
850
|
+
~ Params: {}
|
851
|
+
~ Cookies: {}
|
852
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
853
|
+
~ Setting Up Cookie Store Sessions
|
854
|
+
~ Finalize Cookie Store Session
|
855
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000332}
|
856
|
+
~ {:action_time=>0.000895, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
|
857
|
+
~ {:action_time=>0.00082, :before_filters_time=>6.0e-06, :after_filters_time=>7.0e-06}
|
858
|
+
~ {:action_time=>0.000679, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06}
|
859
|
+
~ {:action_time=>0.000505, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
|
860
|
+
~ {:action_time=>0.000468, :before_filters_time=>4.0e-06, :after_filters_time=>6.0e-06}
|
861
|
+
~ {:action_time=>0.000619, :before_filters_time=>5.0e-06, :after_filters_time=>6.0e-06}
|
862
|
+
~ {:action_time=>0.000364, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
863
|
+
~ {:action_time=>0.000361, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
|
864
|
+
~ Loaded TEST Environment...
|
865
|
+
~ Compiling routes...
|
866
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
867
|
+
~ Params: {}
|
868
|
+
~ Cookies: {}
|
869
|
+
~ No routes match the request, - (Merb::ControllerExceptions::NotFound)
|
870
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:36:in `handle'
|
871
|
+
./spec/private/dispatch/dispatch_spec.rb:11
|
872
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
873
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
874
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
875
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
876
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
877
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
878
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
879
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
880
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
881
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
882
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
883
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
884
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
885
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
886
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
887
|
+
/usr/local/bin/spec:19:in `load'
|
888
|
+
/usr/local/bin/spec:19
|
889
|
+
~ Setting Up Cookie Store Sessions
|
890
|
+
~ Setting Up Cookie Store Sessions
|
891
|
+
~ Finalize Cookie Store Session
|
892
|
+
~ Params: {}
|
893
|
+
~ Cookies: {}
|
894
|
+
~ Routed to: {:action=>"raise_not_acceptable", :controller=>"foo", :format=>nil, :id=>nil}
|
895
|
+
~ Setting Up Cookie Store Sessions
|
896
|
+
~ Merb::ControllerExceptions::NotAcceptable - (Merb::ControllerExceptions::NotAcceptable)
|
897
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:18:in `raise_not_acceptable'
|
898
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
899
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
900
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
901
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
902
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
903
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
904
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
905
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
906
|
+
./spec/private/dispatch/dispatch_spec.rb:17
|
907
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
908
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
909
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
910
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
911
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
912
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
913
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
914
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
915
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
916
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
917
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
918
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
919
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
920
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
921
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
922
|
+
/usr/local/bin/spec:19:in `load'
|
923
|
+
/usr/local/bin/spec:19
|
924
|
+
~ Setting Up Cookie Store Sessions
|
925
|
+
~ Finalize Cookie Store Session
|
926
|
+
~ Params: {}
|
927
|
+
~ Cookies: {}
|
928
|
+
~ Routed to: {:action=>"raise_conflict", :controller=>"foo", :format=>nil, :id=>nil}
|
929
|
+
~ Setting Up Cookie Store Sessions
|
930
|
+
~ Merb::ControllerExceptions::Conflict - (Merb::ControllerExceptions::Conflict)
|
931
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:14:in `raise_conflict'
|
932
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
933
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
934
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
935
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
936
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
937
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
938
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
939
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
940
|
+
./spec/private/dispatch/dispatch_spec.rb:23
|
941
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
942
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
943
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
944
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
945
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
946
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
947
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
948
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
949
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
950
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
951
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
952
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
953
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
954
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
955
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
956
|
+
/usr/local/bin/spec:19:in `load'
|
957
|
+
/usr/local/bin/spec:19
|
958
|
+
~ Setting Up Cookie Store Sessions
|
959
|
+
~ Finalize Cookie Store Session
|
960
|
+
~ Params: {}
|
961
|
+
~ Cookies: {}
|
962
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
963
|
+
~ Setting Up Cookie Store Sessions
|
964
|
+
~ Finalize Cookie Store Session
|
965
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000391}
|
966
|
+
~ Params: {}
|
967
|
+
~ Cookies: {}
|
968
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
969
|
+
~ Setting Up Cookie Store Sessions
|
970
|
+
~ Finalize Cookie Store Session
|
971
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000333}
|
972
|
+
~ {:action_time=>0.000827, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
|
973
|
+
~ {:action_time=>0.000511, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
|
974
|
+
~ {:action_time=>0.0005, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
|
975
|
+
~ {:action_time=>0.000498, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
|
976
|
+
~ {:action_time=>0.000454, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
977
|
+
~ {:action_time=>0.000617, :before_filters_time=>4.0e-06, :after_filters_time=>6.0e-06}
|
978
|
+
~ {:action_time=>0.00036, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
979
|
+
~ {:action_time=>0.000448, :before_filters_time=>7.0e-06, :after_filters_time=>5.0e-06}
|
980
|
+
~ Loaded TEST Environment...
|
981
|
+
~ Compiling routes...
|
982
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
983
|
+
~ Params: {}
|
984
|
+
~ Cookies: {}
|
985
|
+
~ No routes match the request, - (Merb::ControllerExceptions::NotFound)
|
986
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:36:in `handle'
|
987
|
+
./spec/private/dispatch/dispatch_spec.rb:11
|
988
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
989
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
990
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
991
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
992
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
993
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
994
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
995
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
996
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
997
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
998
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
999
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
1000
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
1001
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
1002
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
1003
|
+
/usr/local/bin/spec:19:in `load'
|
1004
|
+
/usr/local/bin/spec:19
|
1005
|
+
~ Setting Up Cookie Store Sessions
|
1006
|
+
~ Setting Up Cookie Store Sessions
|
1007
|
+
~ Finalize Cookie Store Session
|
1008
|
+
~ Params: {}
|
1009
|
+
~ Cookies: {}
|
1010
|
+
~ Routed to: {:action=>"raise_not_acceptable", :controller=>"foo", :format=>nil, :id=>nil}
|
1011
|
+
~ Setting Up Cookie Store Sessions
|
1012
|
+
~ Merb::ControllerExceptions::NotAcceptable - (Merb::ControllerExceptions::NotAcceptable)
|
1013
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:18:in `raise_not_acceptable'
|
1014
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
1015
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
1016
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
1017
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
1018
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
1019
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
1020
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
1021
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
1022
|
+
./spec/private/dispatch/dispatch_spec.rb:17
|
1023
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
1024
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
1025
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
1026
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
1027
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
1028
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
1029
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
1030
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
1031
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
1032
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
1033
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
1034
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
1035
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
1036
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
1037
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
1038
|
+
/usr/local/bin/spec:19:in `load'
|
1039
|
+
/usr/local/bin/spec:19
|
1040
|
+
~ Setting Up Cookie Store Sessions
|
1041
|
+
~ Finalize Cookie Store Session
|
1042
|
+
~ Params: {}
|
1043
|
+
~ Cookies: {}
|
1044
|
+
~ Routed to: {:action=>"raise_conflict", :controller=>"foo", :format=>nil, :id=>nil}
|
1045
|
+
~ Setting Up Cookie Store Sessions
|
1046
|
+
~ Merb::ControllerExceptions::Conflict - (Merb::ControllerExceptions::Conflict)
|
1047
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:14:in `raise_conflict'
|
1048
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
1049
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
1050
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
1051
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
1052
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
1053
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
1054
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
1055
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
1056
|
+
./spec/private/dispatch/dispatch_spec.rb:23
|
1057
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
1058
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
1059
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
1060
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
1061
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
1062
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
1063
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
1064
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
1065
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
1066
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
1067
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
1068
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
1069
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
1070
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
1071
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
1072
|
+
/usr/local/bin/spec:19:in `load'
|
1073
|
+
/usr/local/bin/spec:19
|
1074
|
+
~ Setting Up Cookie Store Sessions
|
1075
|
+
~ Finalize Cookie Store Session
|
1076
|
+
~ Params: {}
|
1077
|
+
~ Cookies: {}
|
1078
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
1079
|
+
~ Setting Up Cookie Store Sessions
|
1080
|
+
~ Finalize Cookie Store Session
|
1081
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.00039}
|
1082
|
+
~ Params: {}
|
1083
|
+
~ Cookies: {}
|
1084
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
1085
|
+
~ Setting Up Cookie Store Sessions
|
1086
|
+
~ Finalize Cookie Store Session
|
1087
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000332}
|
1088
|
+
~ {:action_time=>0.000816, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
|
1089
|
+
~ {:action_time=>0.000519, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
|
1090
|
+
~ {:action_time=>0.000494, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
|
1091
|
+
~ {:action_time=>0.000485, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
|
1092
|
+
~ {:action_time=>0.000513, :before_filters_time=>5.0e-06, :after_filters_time=>6.0e-06}
|
1093
|
+
~ {:action_time=>0.000601, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
1094
|
+
~ {:action_time=>0.000357, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
1095
|
+
~ {:action_time=>0.000362, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
|
1096
|
+
~ Loaded TEST Environment...
|
1097
|
+
~ Compiling routes...
|
1098
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1099
|
+
~ Params: {}
|
1100
|
+
~ Cookies: {}
|
1101
|
+
~ No routes match the request, - (Merb::ControllerExceptions::NotFound)
|
1102
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:36:in `handle'
|
1103
|
+
./spec/private/dispatch/dispatch_spec.rb:11
|
1104
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
1105
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
1106
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
1107
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
1108
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
1109
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
1110
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
1111
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
1112
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
1113
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
1114
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
1115
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
1116
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
1117
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
1118
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
1119
|
+
/usr/local/bin/spec:19:in `load'
|
1120
|
+
/usr/local/bin/spec:19
|
1121
|
+
~ Setting Up Cookie Store Sessions
|
1122
|
+
~ Setting Up Cookie Store Sessions
|
1123
|
+
~ Finalize Cookie Store Session
|
1124
|
+
~ Params: {}
|
1125
|
+
~ Cookies: {}
|
1126
|
+
~ Routed to: {:action=>"raise_not_acceptable", :controller=>"foo", :format=>nil, :id=>nil}
|
1127
|
+
~ Setting Up Cookie Store Sessions
|
1128
|
+
~ Merb::ControllerExceptions::NotAcceptable - (Merb::ControllerExceptions::NotAcceptable)
|
1129
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:18:in `raise_not_acceptable'
|
1130
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
1131
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
1132
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
1133
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
1134
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
1135
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
1136
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
1137
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
1138
|
+
./spec/private/dispatch/dispatch_spec.rb:17
|
1139
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
1140
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
1141
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
1142
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
1143
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
1144
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
1145
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
1146
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
1147
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
1148
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
1149
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
1150
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
1151
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
1152
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
1153
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
1154
|
+
/usr/local/bin/spec:19:in `load'
|
1155
|
+
/usr/local/bin/spec:19
|
1156
|
+
~ Setting Up Cookie Store Sessions
|
1157
|
+
~ Finalize Cookie Store Session
|
1158
|
+
~ Params: {}
|
1159
|
+
~ Cookies: {}
|
1160
|
+
~ Routed to: {:action=>"raise_conflict", :controller=>"foo", :format=>nil, :id=>nil}
|
1161
|
+
~ Setting Up Cookie Store Sessions
|
1162
|
+
~ Merb::ControllerExceptions::Conflict - (Merb::ControllerExceptions::Conflict)
|
1163
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:14:in `raise_conflict'
|
1164
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
1165
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
1166
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
1167
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
1168
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
1169
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
1170
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
1171
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
1172
|
+
./spec/private/dispatch/dispatch_spec.rb:23
|
1173
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
1174
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
1175
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
1176
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
1177
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
1178
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
1179
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
1180
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
1181
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
1182
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
1183
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
1184
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
1185
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
1186
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
1187
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
1188
|
+
/usr/local/bin/spec:19:in `load'
|
1189
|
+
/usr/local/bin/spec:19
|
1190
|
+
~ Setting Up Cookie Store Sessions
|
1191
|
+
~ Finalize Cookie Store Session
|
1192
|
+
~ Params: {}
|
1193
|
+
~ Cookies: {}
|
1194
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
1195
|
+
~ Setting Up Cookie Store Sessions
|
1196
|
+
~ Finalize Cookie Store Session
|
1197
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.00039}
|
1198
|
+
~ Params: {}
|
1199
|
+
~ Cookies: {}
|
1200
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
1201
|
+
~ Setting Up Cookie Store Sessions
|
1202
|
+
~ Finalize Cookie Store Session
|
1203
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000424}
|
1204
|
+
~ {:action_time=>0.000791, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
|
1205
|
+
~ {:action_time=>0.000476, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
|
1206
|
+
~ {:action_time=>0.000515, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
|
1207
|
+
~ {:action_time=>0.000479, :before_filters_time=>5.0e-06, :after_filters_time=>6.0e-06}
|
1208
|
+
~ {:action_time=>0.000457, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
1209
|
+
~ {:action_time=>0.000599, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
1210
|
+
~ {:action_time=>0.000363, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
1211
|
+
~ {:action_time=>0.00036, :before_filters_time=>6.0e-06, :after_filters_time=>4.0e-06}
|
1212
|
+
~ Loaded TEST Environment...
|
1213
|
+
~ Compiling routes...
|
1214
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1215
|
+
~ Params: {}
|
1216
|
+
~ Cookies: {}
|
1217
|
+
~ No routes match the request, - (Merb::ControllerExceptions::NotFound)
|
1218
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:36:in `handle'
|
1219
|
+
./spec/private/dispatch/dispatch_spec.rb:11
|
1220
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
1221
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
1222
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
1223
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
1224
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
1225
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
1226
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
1227
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
1228
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
1229
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
1230
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
1231
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
1232
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
1233
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
1234
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
1235
|
+
/usr/local/bin/spec:19:in `load'
|
1236
|
+
/usr/local/bin/spec:19
|
1237
|
+
~ Setting Up Cookie Store Sessions
|
1238
|
+
~ Setting Up Cookie Store Sessions
|
1239
|
+
~ Finalize Cookie Store Session
|
1240
|
+
~ Params: {}
|
1241
|
+
~ Cookies: {}
|
1242
|
+
~ Routed to: {:action=>"raise_not_acceptable", :controller=>"foo", :format=>nil, :id=>nil}
|
1243
|
+
~ Setting Up Cookie Store Sessions
|
1244
|
+
~ Merb::ControllerExceptions::NotAcceptable - (Merb::ControllerExceptions::NotAcceptable)
|
1245
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:18:in `raise_not_acceptable'
|
1246
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
1247
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
1248
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
1249
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
1250
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
1251
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
1252
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
1253
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
1254
|
+
./spec/private/dispatch/dispatch_spec.rb:17
|
1255
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
1256
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
1257
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
1258
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
1259
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
1260
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
1261
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
1262
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
1263
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
1264
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
1265
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
1266
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
1267
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
1268
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
1269
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
1270
|
+
/usr/local/bin/spec:19:in `load'
|
1271
|
+
/usr/local/bin/spec:19
|
1272
|
+
~ Setting Up Cookie Store Sessions
|
1273
|
+
~ Finalize Cookie Store Session
|
1274
|
+
~ Params: {}
|
1275
|
+
~ Cookies: {}
|
1276
|
+
~ Routed to: {:action=>"raise_conflict", :controller=>"foo", :format=>nil, :id=>nil}
|
1277
|
+
~ Setting Up Cookie Store Sessions
|
1278
|
+
~ Merb::ControllerExceptions::Conflict - (Merb::ControllerExceptions::Conflict)
|
1279
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:14:in `raise_conflict'
|
1280
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
1281
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
1282
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
1283
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
1284
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
1285
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
1286
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
1287
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
1288
|
+
./spec/private/dispatch/dispatch_spec.rb:23
|
1289
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
1290
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
1291
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
1292
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
1293
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
1294
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
1295
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
1296
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
1297
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
1298
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
1299
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
1300
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
1301
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
1302
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
1303
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
1304
|
+
/usr/local/bin/spec:19:in `load'
|
1305
|
+
/usr/local/bin/spec:19
|
1306
|
+
~ Setting Up Cookie Store Sessions
|
1307
|
+
~ Finalize Cookie Store Session
|
1308
|
+
~ Params: {}
|
1309
|
+
~ Cookies: {}
|
1310
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
1311
|
+
~ Setting Up Cookie Store Sessions
|
1312
|
+
~ Finalize Cookie Store Session
|
1313
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000393}
|
1314
|
+
~ Params: {}
|
1315
|
+
~ Cookies: {}
|
1316
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
1317
|
+
~ Setting Up Cookie Store Sessions
|
1318
|
+
~ Finalize Cookie Store Session
|
1319
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000331}
|
1320
|
+
~ {:action_time=>0.0008, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
|
1321
|
+
~ {:action_time=>0.000491, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
|
1322
|
+
~ {:action_time=>0.000481, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
|
1323
|
+
~ {:action_time=>0.000506, :before_filters_time=>6.0e-06, :after_filters_time=>7.0e-06}
|
1324
|
+
~ {:action_time=>0.000576, :before_filters_time=>5.0e-06, :after_filters_time=>6.0e-06}
|
1325
|
+
~ {:action_time=>0.000646, :before_filters_time=>5.0e-06, :after_filters_time=>6.0e-06}
|
1326
|
+
~ {:action_time=>0.00038, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
1327
|
+
~ {:action_time=>0.00037, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
|
1328
|
+
~ Loaded TEST Environment...
|
1329
|
+
~ Compiling routes...
|
1330
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1331
|
+
~ Params: {}
|
1332
|
+
~ Cookies: {}
|
1333
|
+
~ No routes match the request, - (Merb::ControllerExceptions::NotFound)
|
1334
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:36:in `handle'
|
1335
|
+
./spec/private/dispatch/dispatch_spec.rb:11
|
1336
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
1337
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
1338
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
1339
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
1340
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
1341
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
1342
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
1343
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
1344
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
1345
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
1346
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
1347
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
1348
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
1349
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
1350
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
1351
|
+
/usr/local/bin/spec:19:in `load'
|
1352
|
+
/usr/local/bin/spec:19
|
1353
|
+
~ Setting Up Cookie Store Sessions
|
1354
|
+
~ Setting Up Cookie Store Sessions
|
1355
|
+
~ Finalize Cookie Store Session
|
1356
|
+
~ Params: {}
|
1357
|
+
~ Cookies: {}
|
1358
|
+
~ Routed to: {:action=>"raise_not_acceptable", :controller=>"foo", :format=>nil, :id=>nil}
|
1359
|
+
~ Setting Up Cookie Store Sessions
|
1360
|
+
~ Merb::ControllerExceptions::NotAcceptable - (Merb::ControllerExceptions::NotAcceptable)
|
1361
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:18:in `raise_not_acceptable'
|
1362
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
1363
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
1364
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
1365
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
1366
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
1367
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
1368
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
1369
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
1370
|
+
./spec/private/dispatch/dispatch_spec.rb:17
|
1371
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
1372
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
1373
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
1374
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
1375
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
1376
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
1377
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
1378
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
1379
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
1380
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
1381
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
1382
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
1383
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
1384
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
1385
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
1386
|
+
/usr/local/bin/spec:19:in `load'
|
1387
|
+
/usr/local/bin/spec:19
|
1388
|
+
~ Setting Up Cookie Store Sessions
|
1389
|
+
~ Finalize Cookie Store Session
|
1390
|
+
~ Params: {}
|
1391
|
+
~ Cookies: {}
|
1392
|
+
~ Routed to: {:action=>"raise_conflict", :controller=>"foo", :format=>nil, :id=>nil}
|
1393
|
+
~ Setting Up Cookie Store Sessions
|
1394
|
+
~ Merb::ControllerExceptions::Conflict - (Merb::ControllerExceptions::Conflict)
|
1395
|
+
./spec/private/dispatch/fixture/app/controllers/foo.rb:14:in `raise_conflict'
|
1396
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `send'
|
1397
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:228:in `_call_action'
|
1398
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:209:in `_dispatch'
|
1399
|
+
./spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:180:in `_dispatch'
|
1400
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
1401
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `synchronize'
|
1402
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:103:in `dispatch_action'
|
1403
|
+
./spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:71:in `handle'
|
1404
|
+
./spec/private/dispatch/dispatch_spec.rb:23
|
1405
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `instance_eval'
|
1406
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:78:in `run_with_description_capturing'
|
1407
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:19:in `execute'
|
1408
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
1409
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb:16:in `execute'
|
1410
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:292:in `execute_examples'
|
1411
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `each'
|
1412
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:291:in `execute_examples'
|
1413
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb:121:in `run'
|
1414
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:22:in `run'
|
1415
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `each'
|
1416
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb:21:in `run'
|
1417
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:90:in `run_examples'
|
1418
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb:19:in `run'
|
1419
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec:4
|
1420
|
+
/usr/local/bin/spec:19:in `load'
|
1421
|
+
/usr/local/bin/spec:19
|
1422
|
+
~ Setting Up Cookie Store Sessions
|
1423
|
+
~ Finalize Cookie Store Session
|
1424
|
+
~ Params: {}
|
1425
|
+
~ Cookies: {}
|
1426
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
1427
|
+
~ Setting Up Cookie Store Sessions
|
1428
|
+
~ Finalize Cookie Store Session
|
1429
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000416}
|
1430
|
+
~ Params: {}
|
1431
|
+
~ Cookies: {}
|
1432
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
1433
|
+
~ Setting Up Cookie Store Sessions
|
1434
|
+
~ Finalize Cookie Store Session
|
1435
|
+
~ {:before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000332}
|
1436
|
+
~ {:action_time=>0.000779, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
|
1437
|
+
~ {:action_time=>0.00047, :before_filters_time=>5.0e-06, :after_filters_time=>6.0e-06}
|
1438
|
+
~ {:action_time=>0.000479, :before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06}
|
1439
|
+
~ {:action_time=>0.000467, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
|
1440
|
+
~ {:action_time=>0.000449, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
1441
|
+
~ {:action_time=>0.000803, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
1442
|
+
~ {:action_time=>0.000361, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
1443
|
+
~ {:action_time=>0.00036, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
1444
|
+
~ Loaded TEST Environment...
|
1445
|
+
~ Compiling routes...
|
1446
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1447
|
+
~ Loaded TEST Environment...
|
1448
|
+
~ Compiling routes...
|
1449
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1450
|
+
~ Params: {}
|
1451
|
+
~ Cookies: {}
|
1452
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1453
|
+
~ Setting Up Cookie Store Sessions
|
1454
|
+
~ Finalize Cookie Store Session
|
1455
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000888, :before_filters_time=>7.0e-06}
|
1456
|
+
~ Params: {}
|
1457
|
+
~ Cookies: {}
|
1458
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1459
|
+
~ Setting Up Cookie Store Sessions
|
1460
|
+
~ Finalize Cookie Store Session
|
1461
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>7.0e-06}
|
1462
|
+
~ Loaded TEST Environment...
|
1463
|
+
~ Compiling routes...
|
1464
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1465
|
+
~ Loaded TEST Environment...
|
1466
|
+
~ Compiling routes...
|
1467
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1468
|
+
~ Loaded TEST Environment...
|
1469
|
+
~ Compiling routes...
|
1470
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1471
|
+
~ Params: {}
|
1472
|
+
~ Cookies: {}
|
1473
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1474
|
+
~ Setting Up Cookie Store Sessions
|
1475
|
+
~ Finalize Cookie Store Session
|
1476
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000881, :before_filters_time=>8.0e-06}
|
1477
|
+
~ Params: {}
|
1478
|
+
~ Cookies: {}
|
1479
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1480
|
+
~ Setting Up Cookie Store Sessions
|
1481
|
+
~ Finalize Cookie Store Session
|
1482
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000329, :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
|
+
~ Params: {}
|
1490
|
+
~ Cookies: {}
|
1491
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1492
|
+
~ Setting Up Cookie Store Sessions
|
1493
|
+
~ Finalize Cookie Store Session
|
1494
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.00089, :before_filters_time=>7.0e-06}
|
1495
|
+
~ Params: {}
|
1496
|
+
~ Cookies: {}
|
1497
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1498
|
+
~ Setting Up Cookie Store Sessions
|
1499
|
+
~ Finalize Cookie Store Session
|
1500
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000308, :before_filters_time=>6.0e-06}
|
1501
|
+
~ Loaded TEST Environment...
|
1502
|
+
~ Compiling routes...
|
1503
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1504
|
+
~ Loaded TEST Environment...
|
1505
|
+
~ Compiling routes...
|
1506
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1507
|
+
~ Params: {}
|
1508
|
+
~ Cookies: {}
|
1509
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1510
|
+
~ Setting Up Cookie Store Sessions
|
1511
|
+
~ Finalize Cookie Store Session
|
1512
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000889, :before_filters_time=>8.0e-06}
|
1513
|
+
~ Params: {}
|
1514
|
+
~ Cookies: {}
|
1515
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1516
|
+
~ Setting Up Cookie Store Sessions
|
1517
|
+
~ Finalize Cookie Store Session
|
1518
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000275, :before_filters_time=>6.0e-06}
|
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
|
+
~ Params: {}
|
1526
|
+
~ Cookies: {}
|
1527
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1528
|
+
~ Setting Up Cookie Store Sessions
|
1529
|
+
~ Finalize Cookie Store Session
|
1530
|
+
~ {:after_filters_time=>7.0e-06, :action_time=>0.000892, :before_filters_time=>8.0e-06}
|
1531
|
+
~ Params: {}
|
1532
|
+
~ Cookies: {}
|
1533
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1534
|
+
~ Setting Up Cookie Store Sessions
|
1535
|
+
~ Finalize Cookie Store Session
|
1536
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.00028, :before_filters_time=>7.0e-06}
|
1537
|
+
~ Loaded TEST Environment...
|
1538
|
+
~ Compiling routes...
|
1539
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1540
|
+
~ Loaded TEST Environment...
|
1541
|
+
~ Compiling routes...
|
1542
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1543
|
+
~ Params: {}
|
1544
|
+
~ Cookies: {}
|
1545
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1546
|
+
~ Setting Up Cookie Store Sessions
|
1547
|
+
~ Finalize Cookie Store Session
|
1548
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000901, :before_filters_time=>8.0e-06}
|
1549
|
+
~ Params: {}
|
1550
|
+
~ Cookies: {}
|
1551
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1552
|
+
~ Setting Up Cookie Store Sessions
|
1553
|
+
~ Finalize Cookie Store Session
|
1554
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000302, :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
|
+
~ Params: {}
|
1562
|
+
~ Cookies: {}
|
1563
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1564
|
+
~ Setting Up Cookie Store Sessions
|
1565
|
+
~ Finalize Cookie Store Session
|
1566
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000894, :before_filters_time=>8.0e-06}
|
1567
|
+
~ Params: {}
|
1568
|
+
~ Cookies: {}
|
1569
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1570
|
+
~ Setting Up Cookie Store Sessions
|
1571
|
+
~ Finalize Cookie Store Session
|
1572
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000275, :before_filters_time=>7.0e-06}
|
1573
|
+
~ Loaded TEST Environment...
|
1574
|
+
~ Compiling routes...
|
1575
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1576
|
+
~ Loaded TEST Environment...
|
1577
|
+
~ Compiling routes...
|
1578
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1579
|
+
~ Params: {}
|
1580
|
+
~ Cookies: {}
|
1581
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1582
|
+
~ Setting Up Cookie Store Sessions
|
1583
|
+
~ Finalize Cookie Store Session
|
1584
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000896, :before_filters_time=>8.0e-06}
|
1585
|
+
~ Params: {}
|
1586
|
+
~ Cookies: {}
|
1587
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1588
|
+
~ Setting Up Cookie Store Sessions
|
1589
|
+
~ Finalize Cookie Store Session
|
1590
|
+
~ {:after_filters_time=>2.0e-05, :action_time=>0.000291, :before_filters_time=>7.0e-06}
|
1591
|
+
~ Loaded TEST Environment...
|
1592
|
+
~ Compiling routes...
|
1593
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1594
|
+
~ Loaded TEST Environment...
|
1595
|
+
~ Compiling routes...
|
1596
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1597
|
+
~ Params: {}
|
1598
|
+
~ Cookies: {}
|
1599
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1600
|
+
~ Setting Up Cookie Store Sessions
|
1601
|
+
~ Finalize Cookie Store Session
|
1602
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000882, :before_filters_time=>8.0e-06}
|
1603
|
+
~ Params: {}
|
1604
|
+
~ Cookies: {}
|
1605
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1606
|
+
~ Setting Up Cookie Store Sessions
|
1607
|
+
~ Finalize Cookie Store Session
|
1608
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000344, :before_filters_time=>7.0e-06}
|
1609
|
+
~ Loaded TEST Environment...
|
1610
|
+
~ Compiling routes...
|
1611
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1612
|
+
~ Loaded TEST Environment...
|
1613
|
+
~ Compiling routes...
|
1614
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1615
|
+
~ Params: {}
|
1616
|
+
~ Cookies: {}
|
1617
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1618
|
+
~ Setting Up Cookie Store Sessions
|
1619
|
+
~ Finalize Cookie Store Session
|
1620
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000909, :before_filters_time=>7.0e-06}
|
1621
|
+
~ Params: {}
|
1622
|
+
~ Cookies: {}
|
1623
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1624
|
+
~ Setting Up Cookie Store Sessions
|
1625
|
+
~ Finalize Cookie Store Session
|
1626
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000627, :before_filters_time=>7.0e-06}
|
1627
|
+
~ Loaded TEST Environment...
|
1628
|
+
~ Compiling routes...
|
1629
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1630
|
+
~ Loaded TEST Environment...
|
1631
|
+
~ Compiling routes...
|
1632
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1633
|
+
~ Params: {}
|
1634
|
+
~ Cookies: {}
|
1635
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1636
|
+
~ Setting Up Cookie Store Sessions
|
1637
|
+
~ Finalize Cookie Store Session
|
1638
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000887, :before_filters_time=>7.0e-06}
|
1639
|
+
~ Params: {}
|
1640
|
+
~ Cookies: {}
|
1641
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1642
|
+
~ Setting Up Cookie Store Sessions
|
1643
|
+
~ Finalize Cookie Store Session
|
1644
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000721, :before_filters_time=>8.0e-06}
|
1645
|
+
~ Loaded TEST Environment...
|
1646
|
+
~ Compiling routes...
|
1647
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1648
|
+
~ Loaded TEST Environment...
|
1649
|
+
~ Compiling routes...
|
1650
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1651
|
+
~ Params: {}
|
1652
|
+
~ Cookies: {}
|
1653
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1654
|
+
~ Setting Up Cookie Store Sessions
|
1655
|
+
~ Finalize Cookie Store Session
|
1656
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000914, :before_filters_time=>7.0e-06}
|
1657
|
+
~ Params: {}
|
1658
|
+
~ Cookies: {}
|
1659
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1660
|
+
~ Setting Up Cookie Store Sessions
|
1661
|
+
~ Finalize Cookie Store Session
|
1662
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000482, :before_filters_time=>8.0e-06}
|
1663
|
+
~ Loaded TEST Environment...
|
1664
|
+
~ Compiling routes...
|
1665
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1666
|
+
~ Loaded TEST Environment...
|
1667
|
+
~ Compiling routes...
|
1668
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1669
|
+
~ Params: {}
|
1670
|
+
~ Cookies: {}
|
1671
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1672
|
+
~ Setting Up Cookie Store Sessions
|
1673
|
+
~ Finalize Cookie Store Session
|
1674
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000912, :before_filters_time=>8.0e-06}
|
1675
|
+
~ Params: {}
|
1676
|
+
~ Cookies: {}
|
1677
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1678
|
+
~ Setting Up Cookie Store Sessions
|
1679
|
+
~ Finalize Cookie Store Session
|
1680
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000307, :before_filters_time=>6.0e-06}
|
1681
|
+
~ Loaded TEST Environment...
|
1682
|
+
~ Compiling routes...
|
1683
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1684
|
+
~ Loaded TEST Environment...
|
1685
|
+
~ Compiling routes...
|
1686
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1687
|
+
~ Params: {}
|
1688
|
+
~ Cookies: {}
|
1689
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1690
|
+
~ Setting Up Cookie Store Sessions
|
1691
|
+
~ Finalize Cookie Store Session
|
1692
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000884, :before_filters_time=>7.0e-06}
|
1693
|
+
~ Params: {}
|
1694
|
+
~ Cookies: {}
|
1695
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1696
|
+
~ Setting Up Cookie Store Sessions
|
1697
|
+
~ Finalize Cookie Store Session
|
1698
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000326, :before_filters_time=>7.0e-06}
|
1699
|
+
~ Loaded TEST Environment...
|
1700
|
+
~ Compiling routes...
|
1701
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1702
|
+
~ Loaded TEST Environment...
|
1703
|
+
~ Compiling routes...
|
1704
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1705
|
+
~ Params: {}
|
1706
|
+
~ Cookies: {}
|
1707
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1708
|
+
~ Setting Up Cookie Store Sessions
|
1709
|
+
~ Finalize Cookie Store Session
|
1710
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000886, :before_filters_time=>8.0e-06}
|
1711
|
+
~ Params: {}
|
1712
|
+
~ Cookies: {}
|
1713
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1714
|
+
~ Setting Up Cookie Store Sessions
|
1715
|
+
~ Finalize Cookie Store Session
|
1716
|
+
~ {:after_filters_time=>7.0e-06, :action_time=>0.001244, :before_filters_time=>7.0e-06}
|
1717
|
+
~ Loaded TEST Environment...
|
1718
|
+
~ Compiling routes...
|
1719
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1720
|
+
~ Loaded TEST Environment...
|
1721
|
+
~ Compiling routes...
|
1722
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1723
|
+
~ Params: {}
|
1724
|
+
~ Cookies: {}
|
1725
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1726
|
+
~ Setting Up Cookie Store Sessions
|
1727
|
+
~ Finalize Cookie Store Session
|
1728
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000883, :before_filters_time=>7.0e-06}
|
1729
|
+
~ Params: {}
|
1730
|
+
~ Cookies: {}
|
1731
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1732
|
+
~ Setting Up Cookie Store Sessions
|
1733
|
+
~ Finalize Cookie Store Session
|
1734
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000302, :before_filters_time=>7.0e-06}
|
1735
|
+
~ Loaded TEST Environment...
|
1736
|
+
~ Compiling routes...
|
1737
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1738
|
+
~ Loaded TEST Environment...
|
1739
|
+
~ Compiling routes...
|
1740
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1741
|
+
~ Params: {}
|
1742
|
+
~ Cookies: {}
|
1743
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1744
|
+
~ Setting Up Cookie Store Sessions
|
1745
|
+
~ Finalize Cookie Store Session
|
1746
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000887, :before_filters_time=>8.0e-06}
|
1747
|
+
~ Params: {}
|
1748
|
+
~ Cookies: {}
|
1749
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1750
|
+
~ Setting Up Cookie Store Sessions
|
1751
|
+
~ Finalize Cookie Store Session
|
1752
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.00033, :before_filters_time=>6.0e-06}
|
1753
|
+
~ Loaded TEST Environment...
|
1754
|
+
~ Compiling routes...
|
1755
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1756
|
+
~ Loaded TEST Environment...
|
1757
|
+
~ Compiling routes...
|
1758
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1759
|
+
~ Params: {}
|
1760
|
+
~ Cookies: {}
|
1761
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1762
|
+
~ Setting Up Cookie Store Sessions
|
1763
|
+
~ Finalize Cookie Store Session
|
1764
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000883, :before_filters_time=>7.0e-06}
|
1765
|
+
~ Params: {}
|
1766
|
+
~ Cookies: {}
|
1767
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1768
|
+
~ Setting Up Cookie Store Sessions
|
1769
|
+
~ Finalize Cookie Store Session
|
1770
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000308, :before_filters_time=>8.0e-06}
|
1771
|
+
~ Loaded TEST Environment...
|
1772
|
+
~ Compiling routes...
|
1773
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1774
|
+
~ Loaded TEST Environment...
|
1775
|
+
~ Compiling routes...
|
1776
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1777
|
+
~ Params: {}
|
1778
|
+
~ Cookies: {}
|
1779
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1780
|
+
~ Setting Up Cookie Store Sessions
|
1781
|
+
~ Finalize Cookie Store Session
|
1782
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000884, :before_filters_time=>7.0e-06}
|
1783
|
+
~ Params: {}
|
1784
|
+
~ Cookies: {}
|
1785
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1786
|
+
~ Setting Up Cookie Store Sessions
|
1787
|
+
~ Finalize Cookie Store Session
|
1788
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.002082, :before_filters_time=>0.001714}
|
1789
|
+
~ Loaded TEST Environment...
|
1790
|
+
~ Compiling routes...
|
1791
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1792
|
+
~ Loaded TEST Environment...
|
1793
|
+
~ Compiling routes...
|
1794
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1795
|
+
~ Params: {}
|
1796
|
+
~ Cookies: {}
|
1797
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1798
|
+
~ Setting Up Cookie Store Sessions
|
1799
|
+
~ Finalize Cookie Store Session
|
1800
|
+
~ {:after_filters_time=>9.0e-06, :action_time=>0.00089, :before_filters_time=>7.0e-06}
|
1801
|
+
~ Params: {}
|
1802
|
+
~ Cookies: {}
|
1803
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1804
|
+
~ Setting Up Cookie Store Sessions
|
1805
|
+
~ Finalize Cookie Store Session
|
1806
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000305, :before_filters_time=>7.0e-06}
|
1807
|
+
~ Loaded TEST Environment...
|
1808
|
+
~ Compiling routes...
|
1809
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1810
|
+
~ Loaded TEST Environment...
|
1811
|
+
~ Compiling routes...
|
1812
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1813
|
+
~ Params: {}
|
1814
|
+
~ Cookies: {}
|
1815
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1816
|
+
~ Setting Up Cookie Store Sessions
|
1817
|
+
~ Finalize Cookie Store Session
|
1818
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000895, :before_filters_time=>7.0e-06}
|
1819
|
+
~ Params: {}
|
1820
|
+
~ Cookies: {}
|
1821
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1822
|
+
~ Setting Up Cookie Store Sessions
|
1823
|
+
~ Finalize Cookie Store Session
|
1824
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000343, :before_filters_time=>8.0e-06}
|
1825
|
+
~ Loaded TEST Environment...
|
1826
|
+
~ Compiling routes...
|
1827
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1828
|
+
~ Loaded TEST Environment...
|
1829
|
+
~ Compiling routes...
|
1830
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1831
|
+
~ Params: {}
|
1832
|
+
~ Cookies: {}
|
1833
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1834
|
+
~ Setting Up Cookie Store Sessions
|
1835
|
+
~ Finalize Cookie Store Session
|
1836
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000896, :before_filters_time=>7.0e-06}
|
1837
|
+
~ Params: {}
|
1838
|
+
~ Cookies: {}
|
1839
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1840
|
+
~ Setting Up Cookie Store Sessions
|
1841
|
+
~ Finalize Cookie Store Session
|
1842
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000296, :before_filters_time=>7.0e-06}
|
1843
|
+
~ Loaded TEST Environment...
|
1844
|
+
~ Compiling routes...
|
1845
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1846
|
+
~ Loaded TEST Environment...
|
1847
|
+
~ Compiling routes...
|
1848
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1849
|
+
~ Params: {}
|
1850
|
+
~ Cookies: {}
|
1851
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1852
|
+
~ Setting Up Cookie Store Sessions
|
1853
|
+
~ Finalize Cookie Store Session
|
1854
|
+
~ {:after_filters_time=>1.0e-05, :action_time=>0.000894, :before_filters_time=>7.0e-06}
|
1855
|
+
~ Params: {}
|
1856
|
+
~ Cookies: {}
|
1857
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1858
|
+
~ Setting Up Cookie Store Sessions
|
1859
|
+
~ Finalize Cookie Store Session
|
1860
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000344, :before_filters_time=>7.0e-06}
|
1861
|
+
~ Loaded TEST Environment...
|
1862
|
+
~ Compiling routes...
|
1863
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1864
|
+
~ Loaded TEST Environment...
|
1865
|
+
~ Compiling routes...
|
1866
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1867
|
+
~ Params: {}
|
1868
|
+
~ Cookies: {}
|
1869
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1870
|
+
~ Setting Up Cookie Store Sessions
|
1871
|
+
~ Finalize Cookie Store Session
|
1872
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000882, :before_filters_time=>8.0e-06}
|
1873
|
+
~ Params: {}
|
1874
|
+
~ Cookies: {}
|
1875
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1876
|
+
~ Setting Up Cookie Store Sessions
|
1877
|
+
~ Finalize Cookie Store Session
|
1878
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.00026, :before_filters_time=>5.0e-06}
|
1879
|
+
~ Loaded TEST Environment...
|
1880
|
+
~ Compiling routes...
|
1881
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1882
|
+
~ Loaded TEST Environment...
|
1883
|
+
~ Compiling routes...
|
1884
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1885
|
+
~ Params: {}
|
1886
|
+
~ Cookies: {}
|
1887
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1888
|
+
~ Setting Up Cookie Store Sessions
|
1889
|
+
~ Finalize Cookie Store Session
|
1890
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000869, :before_filters_time=>7.0e-06}
|
1891
|
+
~ Params: {}
|
1892
|
+
~ Cookies: {}
|
1893
|
+
~ Routed to: {:format=>nil, :action=>"bar", :controller=>"foo", :id=>"54"}
|
1894
|
+
~ Setting Up Cookie Store Sessions
|
1895
|
+
~ Finalize Cookie Store Session
|
1896
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000266, :before_filters_time=>6.0e-06}
|
1897
|
+
~ Loaded TEST Environment...
|
1898
|
+
~ Compiling routes...
|
1899
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1900
|
+
~ Loaded TEST Environment...
|
1901
|
+
~ Compiling routes...
|
1902
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1903
|
+
~ Params: {}
|
1904
|
+
~ Routed to: {:controller=>"foo", :format=>nil, :id=>"54", :action=>"bar"}
|
1905
|
+
~ {:action_time=>0.000855, :before_filters_time=>7.0e-06, :after_filters_time=>5.0e-06, :dispatch_time=>0.001051}
|
1906
|
+
~ Params: {}
|
1907
|
+
~ Routed to: {:controller=>"foo", :format=>nil, :id=>"54", :action=>"bar"}
|
1908
|
+
~ {:action_time=>0.000235, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06, :dispatch_time=>0.000373}
|
1909
|
+
~ Loaded TEST Environment...
|
1910
|
+
~ Compiling routes...
|
1911
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1912
|
+
~ Loaded TEST Environment...
|
1913
|
+
~ Compiling routes...
|
1914
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1915
|
+
~ Params: {}
|
1916
|
+
~ Routed to: {:controller=>"foo", :format=>nil, :id=>"54", :action=>"bar"}
|
1917
|
+
~ {:dispatch_time=>0.001036, :action_time=>0.00085, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
|
1918
|
+
~ Params: {}
|
1919
|
+
~ Routed to: {:controller=>"foo", :format=>nil, :id=>"54", :action=>"bar"}
|
1920
|
+
~ {:dispatch_time=>0.0004, :action_time=>0.000233, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
1921
|
+
~ Loaded TEST Environment...
|
1922
|
+
~ Compiling routes...
|
1923
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1924
|
+
~ Loaded TEST Environment...
|
1925
|
+
~ Compiling routes...
|
1926
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1927
|
+
~ Params: {}
|
1928
|
+
~ Routed to: {:controller=>"foo", :format=>nil, :id=>"54", :action=>"bar"}
|
1929
|
+
~ {:dispatch_time=>0.001061, :action_time=>0.000868, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
|
1930
|
+
~ Params: {}
|
1931
|
+
~ Routed to: {:controller=>"foo", :format=>nil, :id=>"54", :action=>"bar"}
|
1932
|
+
~ {:dispatch_time=>0.00037, :action_time=>0.000234, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
1933
|
+
~ Loaded TEST Environment...
|
1934
|
+
~ Compiling routes...
|
1935
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1936
|
+
~ Loaded TEST Environment...
|
1937
|
+
~ Compiling routes...
|
1938
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1939
|
+
~ Params: {}
|
1940
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
1941
|
+
~ {:dispatch_time=>0.001039, :action_time=>0.000849, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
|
1942
|
+
~ Params: {}
|
1943
|
+
~ Routed to: {:action=>"bar", :controller=>"foo", :format=>nil, :id=>"54"}
|
1944
|
+
~ {:dispatch_time=>0.000376, :action_time=>0.000245, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
|
1945
|
+
~ Loaded TEST Environment...
|
1946
|
+
~ Compiling routes...
|
1947
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1948
|
+
~ Loaded TEST Environment...
|
1949
|
+
~ Compiling routes...
|
1950
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1951
|
+
~ Params: {}
|
1952
|
+
~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
|
1953
|
+
~ {:action_time=>0.000859, :before_filters_time=>8.0e-06, :dispatch_time=>0.0011, :after_filters_time=>7.0e-06}
|
1954
|
+
~ Params: {}
|
1955
|
+
~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
|
1956
|
+
~ {:action_time=>0.000238, :before_filters_time=>5.0e-06, :dispatch_time=>0.000374, :after_filters_time=>5.0e-06}
|
1957
|
+
~ Loaded TEST Environment...
|
1958
|
+
~ Compiling routes...
|
1959
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1960
|
+
~ Loaded TEST Environment...
|
1961
|
+
~ Compiling routes...
|
1962
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1963
|
+
~ Params: {}
|
1964
|
+
~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
|
1965
|
+
~ {:dispatch_time=>0.001118, :action_time=>0.000903, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
|
1966
|
+
~ Params: {}
|
1967
|
+
~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
|
1968
|
+
~ {:dispatch_time=>0.000423, :action_time=>0.000273, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
1969
|
+
~ Loaded TEST Environment...
|
1970
|
+
~ Compiling routes...
|
1971
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1972
|
+
~ Loaded TEST Environment...
|
1973
|
+
~ Compiling routes...
|
1974
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1975
|
+
~ Params: {}
|
1976
|
+
~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
|
1977
|
+
~ {:dispatch_time=>0.001068, :action_time=>0.00086, :before_filters_time=>8.0e-06, :after_filters_time=>7.0e-06}
|
1978
|
+
~ Params: {}
|
1979
|
+
~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
|
1980
|
+
~ {:dispatch_time=>0.001008, :action_time=>0.000708, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
|
1981
|
+
~ Loaded TEST Environment...
|
1982
|
+
~ Compiling routes...
|
1983
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1984
|
+
~ Loaded TEST Environment...
|
1985
|
+
~ Compiling routes...
|
1986
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1987
|
+
~ Params: {}
|
1988
|
+
~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
|
1989
|
+
~ {:dispatch_time=>0.001078, :action_time=>0.000864, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
|
1990
|
+
~ Params: {}
|
1991
|
+
~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
|
1992
|
+
~ {:dispatch_time=>0.001809, :action_time=>0.001159, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06}
|
1993
|
+
~ Loaded TEST Environment...
|
1994
|
+
~ Compiling routes...
|
1995
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1996
|
+
~ Loaded TEST Environment...
|
1997
|
+
~ Compiling routes...
|
1998
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
1999
|
+
~ Params: {}
|
2000
|
+
~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
|
2001
|
+
~ {:dispatch_time=>0.007199, :action_time=>0.006863, :before_filters_time=>1.0e-05, :after_filters_time=>8.0e-06}
|
2002
|
+
~ Params: {}
|
2003
|
+
~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
|
2004
|
+
~ {:dispatch_time=>0.001312, :action_time=>0.00113, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
|
2005
|
+
~ Loaded TEST Environment...
|
2006
|
+
~ Compiling routes...
|
2007
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
2008
|
+
~ Loaded TEST Environment...
|
2009
|
+
~ Compiling routes...
|
2010
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
2011
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
2012
|
+
~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
|
2013
|
+
~ {:action_time=>0.000865, :dispatch_time=>0.001076, :before_filters_time=>8.0e-06, :after_filters_time=>6.0e-06}
|
2014
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
2015
|
+
~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
|
2016
|
+
~ {:action_time=>0.000242, :dispatch_time=>0.000384, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
2017
|
+
~ Loaded TEST Environment...
|
2018
|
+
~ Compiling routes...
|
2019
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
2020
|
+
~ Loaded TEST Environment...
|
2021
|
+
~ Compiling routes...
|
2022
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
2023
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
2024
|
+
~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
|
2025
|
+
~ {:action_time=>0.000873, :dispatch_time=>0.00112, :before_filters_time=>7.0e-06, :after_filters_time=>6.0e-06}
|
2026
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
2027
|
+
~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
|
2028
|
+
~ {:action_time=>0.000251, :dispatch_time=>0.000394, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|
2029
|
+
~ Loaded TEST Environment...
|
2030
|
+
~ Compiling routes...
|
2031
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
2032
|
+
~ Loaded TEST Environment...
|
2033
|
+
~ Compiling routes...
|
2034
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
2035
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
2036
|
+
~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
|
2037
|
+
~ {:action_time=>0.000936, :dispatch_time=>0.00165, :before_filters_time=>9.0e-06, :after_filters_time=>6.0e-06}
|
2038
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
2039
|
+
~ Routed to: {:action=>"bar", :format=>nil, :controller=>"foo", :id=>"54"}
|
2040
|
+
~ {:action_time=>0.000269, :dispatch_time=>0.000425, :before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06}
|