merb-core 0.9.5 → 0.9.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +925 -0
- data/CONTRIBUTORS +93 -0
- data/PUBLIC_CHANGELOG +85 -0
- data/Rakefile +18 -28
- data/bin/merb +34 -5
- data/lib/merb-core/autoload.rb +2 -3
- data/lib/merb-core/bootloader.rb +60 -66
- data/lib/merb-core/config.rb +7 -1
- data/lib/merb-core/controller/abstract_controller.rb +35 -21
- data/lib/merb-core/controller/merb_controller.rb +15 -42
- data/lib/merb-core/controller/mixins/authentication.rb +42 -6
- data/lib/merb-core/controller/mixins/conditional_get.rb +83 -0
- data/lib/merb-core/controller/mixins/render.rb +3 -3
- data/lib/merb-core/core_ext/kernel.rb +6 -19
- data/lib/merb-core/dispatch/cookies.rb +96 -80
- data/lib/merb-core/dispatch/default_exception/views/index.html.erb +2 -0
- data/lib/merb-core/dispatch/request.rb +18 -16
- data/lib/merb-core/dispatch/router/route.rb +6 -0
- data/lib/merb-core/dispatch/router.rb +4 -1
- data/lib/merb-core/dispatch/session/container.rb +64 -0
- data/lib/merb-core/dispatch/session/cookie.rb +91 -101
- data/lib/merb-core/dispatch/session/memcached.rb +38 -174
- data/lib/merb-core/dispatch/session/memory.rb +62 -208
- data/lib/merb-core/dispatch/session/store_container.rb +145 -0
- data/lib/merb-core/dispatch/session.rb +174 -48
- data/lib/merb-core/rack/middleware/conditional_get.rb +14 -8
- data/lib/merb-core/rack/middleware/csrf.rb +73 -0
- data/lib/merb-core/rack.rb +1 -0
- data/lib/merb-core/script.rb +112 -0
- data/lib/merb-core/server.rb +2 -0
- data/lib/merb-core/tasks/merb_rake_helper.rb +25 -0
- data/lib/merb-core/test/helpers/request_helper.rb +40 -3
- data/lib/merb-core/test/run_specs.rb +4 -3
- data/lib/merb-core/vendor/facets/inflect.rb +7 -10
- data/lib/merb-core/version.rb +1 -1
- data/lib/merb-core.rb +11 -40
- data/spec/private/core_ext/kernel_spec.rb +0 -11
- data/spec/private/dispatch/fixture/log/merb_test.log +893 -0
- data/spec/private/router/fixture/log/merb_test.log +12 -1728
- data/spec/private/router/route_spec.rb +4 -0
- data/spec/private/router/router_spec.rb +8 -0
- data/spec/private/vendor/facets/plural_spec.rb +1 -1
- data/spec/private/vendor/facets/singular_spec.rb +1 -1
- data/spec/public/abstract_controller/controllers/display.rb +8 -2
- data/spec/public/abstract_controller/controllers/filters.rb +18 -0
- data/spec/public/abstract_controller/display_spec.rb +6 -2
- data/spec/public/abstract_controller/filter_spec.rb +4 -0
- data/spec/public/controller/authentication_spec.rb +114 -43
- data/spec/public/controller/base_spec.rb +8 -0
- data/spec/public/controller/conditional_get_spec.rb +100 -0
- data/spec/public/controller/config/init.rb +1 -1
- data/spec/public/controller/controllers/authentication.rb +29 -0
- data/spec/public/controller/controllers/base.rb +13 -0
- data/spec/public/controller/controllers/conditional_get.rb +35 -0
- data/spec/public/controller/controllers/cookies.rb +10 -1
- data/spec/public/controller/cookies_spec.rb +38 -9
- data/spec/public/controller/spec_helper.rb +1 -0
- data/spec/public/controller/url_spec.rb +70 -1
- data/spec/public/directory_structure/directory/log/merb_test.log +461 -0
- data/spec/public/rack/conditinal_get_middleware_spec.rb +77 -89
- data/spec/public/rack/csrf_middleware_spec.rb +70 -0
- data/spec/public/reloading/directory/log/merb_test.log +52 -0
- data/spec/public/request/request_spec.rb +19 -1
- data/spec/public/router/fixation_spec.rb +26 -4
- data/spec/public/router/fixture/log/merb_test.log +234 -30332
- data/spec/public/session/controllers/sessions.rb +52 -0
- data/spec/public/session/cookie_session_spec.rb +73 -0
- data/spec/public/session/memcached_session_spec.rb +31 -0
- data/spec/public/session/memory_session_spec.rb +28 -0
- data/spec/public/session/multiple_sessions_spec.rb +74 -0
- data/spec/public/session/no_session_spec.rb +12 -0
- data/spec/public/session/session_spec.rb +91 -0
- data/spec/public/test/controllers/spec_helper_controller.rb +2 -1
- data/spec/public/test/request_helper_spec.rb +15 -0
- data/spec/spec_helper.rb +2 -2
- metadata +23 -5
- data/spec/private/dispatch/cookies_spec.rb +0 -219
- data/spec/private/dispatch/session_mixin_spec.rb +0 -47
@@ -7800,3 +7800,896 @@ Restarting Worker Thread
|
|
7800
7800
|
~ Started request handling: Tue Aug 26 00:08:09 +0300 2008
|
7801
7801
|
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7802
7802
|
~ {:before_filters_time=>1.0e-05, :action_time=>0.000585, :dispatch_time=>0.000916, :after_filters_time=>9.0e-06}
|
7803
|
+
~ Loaded TEST Environment...
|
7804
|
+
~ Compiling routes...
|
7805
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7806
|
+
~ Started request handling: Wed Aug 27 13:21:44 +0300 2008
|
7807
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7808
|
+
~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.9e-05, :dispatch_time=>0.001495, :action_time=>0.001203}
|
7809
|
+
~ Started request handling: Wed Aug 27 13:21:44 +0300 2008
|
7810
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7811
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>5.0e-06, :dispatch_time=>0.000496, :action_time=>0.000269}
|
7812
|
+
~ Loaded TEST Environment...
|
7813
|
+
~ Compiling routes...
|
7814
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7815
|
+
~ Started request handling: Wed Aug 27 13:22:47 +0300 2008
|
7816
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7817
|
+
~ {:action_time=>0.002157, :after_filters_time=>2.5e-05, :before_filters_time=>2.6e-05, :dispatch_time=>0.002682}
|
7818
|
+
~ Started request handling: Wed Aug 27 13:22:47 +0300 2008
|
7819
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7820
|
+
~ {:action_time=>0.000441, :after_filters_time=>1.0e-05, :before_filters_time=>1.0e-05, :dispatch_time=>0.000784}
|
7821
|
+
~ Loaded TEST Environment...
|
7822
|
+
~ Compiling routes...
|
7823
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7824
|
+
~ Started request handling: Wed Aug 27 13:45:17 +0300 2008
|
7825
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7826
|
+
~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.001474, :action_time=>0.001166}
|
7827
|
+
~ Started request handling: Wed Aug 27 13:45:17 +0300 2008
|
7828
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7829
|
+
~ {:after_filters_time=>4.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.000478, :action_time=>0.000298}
|
7830
|
+
~ Loaded TEST Environment...
|
7831
|
+
~ Compiling routes...
|
7832
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7833
|
+
~ Started request handling: Wed Aug 27 13:51:55 +0300 2008
|
7834
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7835
|
+
~ {:after_filters_time=>2.0e-05, :before_filters_time=>2.8e-05, :dispatch_time=>0.003056, :action_time=>0.002563}
|
7836
|
+
~ Started request handling: Wed Aug 27 13:51:55 +0300 2008
|
7837
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7838
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.000642, :action_time=>0.000328}
|
7839
|
+
~ Loaded TEST Environment...
|
7840
|
+
~ Compiling routes...
|
7841
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7842
|
+
~ Started request handling: Wed Aug 27 13:55:36 +0300 2008
|
7843
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7844
|
+
~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.9e-05, :dispatch_time=>0.001747, :action_time=>0.001469}
|
7845
|
+
~ Started request handling: Wed Aug 27 13:55:36 +0300 2008
|
7846
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7847
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>7.0e-06, :dispatch_time=>0.000468, :action_time=>0.000276}
|
7848
|
+
~ Loaded TEST Environment...
|
7849
|
+
~ Compiling routes...
|
7850
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7851
|
+
~ Started request handling: Wed Aug 27 14:03:05 +0300 2008
|
7852
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7853
|
+
~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.001531, :action_time=>0.001249}
|
7854
|
+
~ Started request handling: Wed Aug 27 14:03:05 +0300 2008
|
7855
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7856
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.000448, :action_time=>0.000268}
|
7857
|
+
~ Loaded TEST Environment...
|
7858
|
+
~ Compiling routes...
|
7859
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7860
|
+
~ Started request handling: Wed Aug 27 14:07:01 +0300 2008
|
7861
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7862
|
+
~ {:after_filters_time=>1.6e-05, :before_filters_time=>2.0e-05, :dispatch_time=>0.004917, :action_time=>0.001457}
|
7863
|
+
~ Started request handling: Wed Aug 27 14:07:01 +0300 2008
|
7864
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7865
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.000558, :action_time=>0.000327}
|
7866
|
+
~ Loaded TEST Environment...
|
7867
|
+
~ Compiling routes...
|
7868
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7869
|
+
~ Started request handling: Wed Aug 27 14:09:16 +0300 2008
|
7870
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7871
|
+
~ {:after_filters_time=>1.5e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.00155, :action_time=>0.001248}
|
7872
|
+
~ Started request handling: Wed Aug 27 14:09:16 +0300 2008
|
7873
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7874
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.000458, :action_time=>0.000274}
|
7875
|
+
~ Loaded TEST Environment...
|
7876
|
+
~ Compiling routes...
|
7877
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7878
|
+
~ Started request handling: Wed Aug 27 14:13:45 +0300 2008
|
7879
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7880
|
+
~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.001563, :action_time=>0.001189}
|
7881
|
+
~ Started request handling: Wed Aug 27 14:13:45 +0300 2008
|
7882
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7883
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.000476, :action_time=>0.000291}
|
7884
|
+
~ Loaded TEST Environment...
|
7885
|
+
~ Compiling routes...
|
7886
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7887
|
+
~ Started request handling: Thu Aug 28 04:15:21 +0300 2008
|
7888
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7889
|
+
~ {:after_filters_time=>3.7e-05, :before_filters_time=>5.9e-05, :dispatch_time=>0.049326, :action_time=>0.049053}
|
7890
|
+
~ Started request handling: Thu Aug 28 04:15:21 +0300 2008
|
7891
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7892
|
+
~ {:after_filters_time=>1.0e-05, :before_filters_time=>1.0e-05, :dispatch_time=>0.000857, :action_time=>0.000509}
|
7893
|
+
~ Loaded TEST Environment...
|
7894
|
+
~ Compiling routes...
|
7895
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7896
|
+
~ Started request handling: Thu Aug 28 04:24:25 +0300 2008
|
7897
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7898
|
+
~ {:after_filters_time=>1.5e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.001494, :action_time=>0.001206}
|
7899
|
+
~ Started request handling: Thu Aug 28 04:24:25 +0300 2008
|
7900
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7901
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.000448, :action_time=>0.000266}
|
7902
|
+
~ Loaded TEST Environment...
|
7903
|
+
~ Compiling routes...
|
7904
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7905
|
+
~ Started request handling: Thu Aug 28 15:06:53 +0300 2008
|
7906
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7907
|
+
~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.001498, :action_time=>0.001227}
|
7908
|
+
~ Started request handling: Thu Aug 28 15:06:53 +0300 2008
|
7909
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7910
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.000533, :action_time=>0.000349}
|
7911
|
+
~ Loaded TEST Environment...
|
7912
|
+
~ Compiling routes...
|
7913
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7914
|
+
~ Loaded TEST Environment...
|
7915
|
+
~ Compiling routes...
|
7916
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7917
|
+
~ Loaded TEST Environment...
|
7918
|
+
~ Compiling routes...
|
7919
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7920
|
+
~ Loaded TEST Environment...
|
7921
|
+
~ Compiling routes...
|
7922
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7923
|
+
~ Loaded TEST Environment...
|
7924
|
+
~ Compiling routes...
|
7925
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7926
|
+
~ Loaded TEST Environment...
|
7927
|
+
~ Compiling routes...
|
7928
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7929
|
+
~ Loaded TEST Environment...
|
7930
|
+
~ Compiling routes...
|
7931
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7932
|
+
~ Loaded TEST Environment...
|
7933
|
+
~ Compiling routes...
|
7934
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7935
|
+
~ Loaded TEST Environment...
|
7936
|
+
~ Compiling routes...
|
7937
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7938
|
+
~ Loaded TEST Environment...
|
7939
|
+
~ Compiling routes...
|
7940
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7941
|
+
~ Loaded TEST Environment...
|
7942
|
+
~ Compiling routes...
|
7943
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7944
|
+
~ Loaded TEST Environment...
|
7945
|
+
~ Compiling routes...
|
7946
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7947
|
+
~ Loaded TEST Environment...
|
7948
|
+
~ Compiling routes...
|
7949
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7950
|
+
~ Loaded TEST Environment...
|
7951
|
+
~ Compiling routes...
|
7952
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7953
|
+
~ Loaded TEST Environment...
|
7954
|
+
~ Compiling routes...
|
7955
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7956
|
+
~ Started request handling: Thu Aug 28 22:40:05 +0300 2008
|
7957
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7958
|
+
~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.00143, :action_time=>0.001159}
|
7959
|
+
~ Started request handling: Thu Aug 28 22:40:05 +0300 2008
|
7960
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7961
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.000455, :action_time=>0.000279}
|
7962
|
+
~ Loaded TEST Environment...
|
7963
|
+
~ Compiling routes...
|
7964
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7965
|
+
~ Started request handling: Fri Aug 29 13:03:47 +0300 2008
|
7966
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7967
|
+
~ {:after_filters_time=>1.5e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.001413, :action_time=>0.001147}
|
7968
|
+
~ Started request handling: Fri Aug 29 13:03:47 +0300 2008
|
7969
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7970
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>5.0e-06, :dispatch_time=>0.000444, :action_time=>0.000273}
|
7971
|
+
~ Loaded TEST Environment...
|
7972
|
+
~ Compiling routes...
|
7973
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7974
|
+
~ Started request handling: Sat Aug 30 01:42:22 +0300 2008
|
7975
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7976
|
+
~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.001438, :action_time=>0.001147}
|
7977
|
+
~ Started request handling: Sat Aug 30 01:42:22 +0300 2008
|
7978
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7979
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.000449, :action_time=>0.000275}
|
7980
|
+
~ Loaded TEST Environment...
|
7981
|
+
~ Compiling routes...
|
7982
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7983
|
+
~ Started request handling: Sat Aug 30 11:13:53 +0300 2008
|
7984
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7985
|
+
~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.001482, :action_time=>0.001192}
|
7986
|
+
~ Started request handling: Sat Aug 30 11:13:53 +0300 2008
|
7987
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7988
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.000454, :action_time=>0.000281}
|
7989
|
+
~ Loaded TEST Environment...
|
7990
|
+
~ Compiling routes...
|
7991
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
7992
|
+
~ Started request handling: Sun Aug 31 10:56:20 +0300 2008
|
7993
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7994
|
+
~ {:after_filters_time=>1.5e-05, :dispatch_time=>0.001429, :before_filters_time=>1.9e-05, :action_time=>0.001154}
|
7995
|
+
~ Started request handling: Sun Aug 31 10:56:20 +0300 2008
|
7996
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
7997
|
+
~ {:after_filters_time=>6.0e-06, :dispatch_time=>0.000444, :before_filters_time=>6.0e-06, :action_time=>0.000275}
|
7998
|
+
~ Loaded TEST Environment...
|
7999
|
+
~ Compiling routes...
|
8000
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
8001
|
+
~ Started request handling: Sun Aug 31 11:03:40 +0300 2008
|
8002
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8003
|
+
~ {:after_filters_time=>1.5e-05, :dispatch_time=>0.001786, :before_filters_time=>2.0e-05, :action_time=>0.001518}
|
8004
|
+
~ Started request handling: Sun Aug 31 11:03:40 +0300 2008
|
8005
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8006
|
+
~ {:after_filters_time=>5.0e-06, :dispatch_time=>0.000661, :before_filters_time=>6.0e-06, :action_time=>0.0003}
|
8007
|
+
~ Loaded TEST Environment...
|
8008
|
+
~ Compiling routes...
|
8009
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
8010
|
+
~ Started request handling: Mon Sep 01 23:55:12 +0300 2008
|
8011
|
+
~ Controller class not found for controller `tickets'
|
8012
|
+
~ Controller class not found for controller `tickets' - (Merb::ControllerExceptions::NotFound)
|
8013
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/request.rb:54:in `controller'
|
8014
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:46:in `handle'
|
8015
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:29:in `handle'
|
8016
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/route_params_spec.rb:12
|
8017
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:49:in `instance_eval'
|
8018
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:49:in `eval_each_fail_fast'
|
8019
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:48:in `each'
|
8020
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:48:in `eval_each_fail_fast'
|
8021
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:266:in `run_before_each'
|
8022
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:360:in `execute_in_class_hierarchy'
|
8023
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:359:in `each'
|
8024
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:359:in `execute_in_class_hierarchy'
|
8025
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:265:in `run_before_each'
|
8026
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:101:in `before_example'
|
8027
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:20:in `execute'
|
8028
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
8029
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:18:in `execute'
|
8030
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:303:in `execute_examples'
|
8031
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:302:in `each'
|
8032
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:302:in `execute_examples'
|
8033
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:130:in `run'
|
8034
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:22:in `run'
|
8035
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:21:in `each'
|
8036
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:21:in `run'
|
8037
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/options.rb:106:in `run_examples'
|
8038
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/command_line.rb:19:in `run'
|
8039
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/bin/spec:4
|
8040
|
+
/opt/local/bin/spec:19:in `load'
|
8041
|
+
/opt/local/bin/spec:19
|
8042
|
+
~ Params: {"format"=>nil, "action"=>"book", "id"=>"milan", "controller"=>"tickets"}
|
8043
|
+
~ Dispatching Merb::ControllerExceptions::NotFound raised another error.
|
8044
|
+
~ Oops! No template found. Merb was looking for /Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/fixture/app/views/exceptions/not_found.html.erbfor content type 'html'. You might have mispelled the template or file name. Registered template extensions: erb. If you use Haml or some other template plugin, make sure you required Merb plugin dependency in your init file. - (Merb::ControllerExceptions::TemplateNotFound)
|
8045
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/mixins/render.rb:112:in `render'
|
8046
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/fixture/app/controllers/exceptions.rb:9:in `not_found'
|
8047
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:272:in `send'
|
8048
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:272:in `_call_action'
|
8049
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:252:in `_dispatch'
|
8050
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:198:in `_dispatch'
|
8051
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:115:in `dispatch_action'
|
8052
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:115:in `synchronize'
|
8053
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:115:in `dispatch_action'
|
8054
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:149:in `dispatch_exception'
|
8055
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:67:in `handle'
|
8056
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:29:in `handle'
|
8057
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/route_params_spec.rb:12
|
8058
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:49:in `instance_eval'
|
8059
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:49:in `eval_each_fail_fast'
|
8060
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:48:in `each'
|
8061
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:48:in `eval_each_fail_fast'
|
8062
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:266:in `run_before_each'
|
8063
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:360:in `execute_in_class_hierarchy'
|
8064
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:359:in `each'
|
8065
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:359:in `execute_in_class_hierarchy'
|
8066
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:265:in `run_before_each'
|
8067
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:101:in `before_example'
|
8068
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:20:in `execute'
|
8069
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
8070
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:18:in `execute'
|
8071
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:303:in `execute_examples'
|
8072
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:302:in `each'
|
8073
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:302:in `execute_examples'
|
8074
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:130:in `run'
|
8075
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:22:in `run'
|
8076
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:21:in `each'
|
8077
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:21:in `run'
|
8078
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/options.rb:106:in `run_examples'
|
8079
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/command_line.rb:19:in `run'
|
8080
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/bin/spec:4
|
8081
|
+
/opt/local/bin/spec:19:in `load'
|
8082
|
+
/opt/local/bin/spec:19
|
8083
|
+
~ Params: {"format"=>nil, "action"=>"book", "id"=>"milan", "controller"=>"tickets"}
|
8084
|
+
~ Params: {"format"=>nil, "action"=>"book", "id"=>"milan", "controller"=>"tickets"}
|
8085
|
+
~ Started request handling: Mon Sep 01 23:55:12 +0300 2008
|
8086
|
+
~ Controller class not found for controller `products'
|
8087
|
+
~ Controller class not found for controller `products' - (Merb::ControllerExceptions::NotFound)
|
8088
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/request.rb:54:in `controller'
|
8089
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:46:in `handle'
|
8090
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:29:in `handle'
|
8091
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/route_params_spec.rb:27
|
8092
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:84:in `instance_eval'
|
8093
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:84:in `run_with_description_capturing'
|
8094
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:21:in `execute'
|
8095
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
8096
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:18:in `execute'
|
8097
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:303:in `execute_examples'
|
8098
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:302:in `each'
|
8099
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:302:in `execute_examples'
|
8100
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:130:in `run'
|
8101
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:22:in `run'
|
8102
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:21:in `each'
|
8103
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:21:in `run'
|
8104
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/options.rb:106:in `run_examples'
|
8105
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/command_line.rb:19:in `run'
|
8106
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/bin/spec:4
|
8107
|
+
/opt/local/bin/spec:19:in `load'
|
8108
|
+
/opt/local/bin/spec:19
|
8109
|
+
~ Params: {"format"=>nil, "action"=>"show", "id"=>"54", "controller"=>"products"}
|
8110
|
+
~ Dispatching Merb::ControllerExceptions::NotFound raised another error.
|
8111
|
+
~ Oops! No template found. Merb was looking for /Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/fixture/app/views/exceptions/not_found.html.erbfor content type 'html'. You might have mispelled the template or file name. Registered template extensions: erb. If you use Haml or some other template plugin, make sure you required Merb plugin dependency in your init file. - (Merb::ControllerExceptions::TemplateNotFound)
|
8112
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/mixins/render.rb:112:in `render'
|
8113
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/fixture/app/controllers/exceptions.rb:9:in `not_found'
|
8114
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:272:in `send'
|
8115
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:272:in `_call_action'
|
8116
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:252:in `_dispatch'
|
8117
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:198:in `_dispatch'
|
8118
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:115:in `dispatch_action'
|
8119
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:115:in `synchronize'
|
8120
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:115:in `dispatch_action'
|
8121
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:149:in `dispatch_exception'
|
8122
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:67:in `handle'
|
8123
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:29:in `handle'
|
8124
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/route_params_spec.rb:27
|
8125
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:84:in `instance_eval'
|
8126
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:84:in `run_with_description_capturing'
|
8127
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:21:in `execute'
|
8128
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
8129
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:18:in `execute'
|
8130
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:303:in `execute_examples'
|
8131
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:302:in `each'
|
8132
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:302:in `execute_examples'
|
8133
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:130:in `run'
|
8134
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:22:in `run'
|
8135
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:21:in `each'
|
8136
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:21:in `run'
|
8137
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/options.rb:106:in `run_examples'
|
8138
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/command_line.rb:19:in `run'
|
8139
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/bin/spec:4
|
8140
|
+
/opt/local/bin/spec:19:in `load'
|
8141
|
+
/opt/local/bin/spec:19
|
8142
|
+
~ Params: {"format"=>nil, "action"=>"show", "id"=>"54", "controller"=>"products"}
|
8143
|
+
~ Params: {"format"=>nil, "action"=>"show", "id"=>"54", "controller"=>"products"}
|
8144
|
+
~ Started request handling: Mon Sep 01 23:55:12 +0300 2008
|
8145
|
+
~ Controller class not found for controller `tickets'
|
8146
|
+
~ Loaded TEST Environment...
|
8147
|
+
~ Compiling routes...
|
8148
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
8149
|
+
~ Started request handling: Tue Sep 02 20:37:27 +0300 2008
|
8150
|
+
~ Controller class not found for controller `tickets'
|
8151
|
+
~ Controller class not found for controller `tickets' - (Merb::ControllerExceptions::NotFound)
|
8152
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/request.rb:54:in `controller'
|
8153
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:46:in `handle'
|
8154
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:29:in `handle'
|
8155
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/route_params_spec.rb:12
|
8156
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:49:in `instance_eval'
|
8157
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:49:in `eval_each_fail_fast'
|
8158
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:48:in `each'
|
8159
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:48:in `eval_each_fail_fast'
|
8160
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:266:in `run_before_each'
|
8161
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:360:in `execute_in_class_hierarchy'
|
8162
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:359:in `each'
|
8163
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:359:in `execute_in_class_hierarchy'
|
8164
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:265:in `run_before_each'
|
8165
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:101:in `before_example'
|
8166
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:20:in `execute'
|
8167
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
8168
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:18:in `execute'
|
8169
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:303:in `execute_examples'
|
8170
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:302:in `each'
|
8171
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:302:in `execute_examples'
|
8172
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:130:in `run'
|
8173
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:22:in `run'
|
8174
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:21:in `each'
|
8175
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:21:in `run'
|
8176
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/options.rb:106:in `run_examples'
|
8177
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/command_line.rb:19:in `run'
|
8178
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/bin/spec:4
|
8179
|
+
/opt/local/bin/spec:19:in `load'
|
8180
|
+
/opt/local/bin/spec:19
|
8181
|
+
~ Params: {"format"=>nil, "action"=>"book", "id"=>"milan", "controller"=>"tickets"}
|
8182
|
+
~ Dispatching Merb::ControllerExceptions::NotFound raised another error.
|
8183
|
+
~ Oops! No template found. Merb was looking for /Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/fixture/app/views/exceptions/not_found.html.erbfor content type 'html'. You might have mispelled the template or file name. Registered template extensions: erb. If you use Haml or some other template plugin, make sure you required Merb plugin dependency in your init file. - (Merb::ControllerExceptions::TemplateNotFound)
|
8184
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/mixins/render.rb:112:in `render'
|
8185
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/fixture/app/controllers/exceptions.rb:9:in `not_found'
|
8186
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:272:in `send'
|
8187
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:272:in `_call_action'
|
8188
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:252:in `_dispatch'
|
8189
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:198:in `_dispatch'
|
8190
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:115:in `dispatch_action'
|
8191
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:115:in `synchronize'
|
8192
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:115:in `dispatch_action'
|
8193
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:149:in `dispatch_exception'
|
8194
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:67:in `handle'
|
8195
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:29:in `handle'
|
8196
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/route_params_spec.rb:12
|
8197
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:49:in `instance_eval'
|
8198
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:49:in `eval_each_fail_fast'
|
8199
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:48:in `each'
|
8200
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:48:in `eval_each_fail_fast'
|
8201
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:266:in `run_before_each'
|
8202
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:360:in `execute_in_class_hierarchy'
|
8203
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:359:in `each'
|
8204
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:359:in `execute_in_class_hierarchy'
|
8205
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:265:in `run_before_each'
|
8206
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:101:in `before_example'
|
8207
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:20:in `execute'
|
8208
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
8209
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:18:in `execute'
|
8210
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:303:in `execute_examples'
|
8211
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:302:in `each'
|
8212
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:302:in `execute_examples'
|
8213
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:130:in `run'
|
8214
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:22:in `run'
|
8215
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:21:in `each'
|
8216
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:21:in `run'
|
8217
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/options.rb:106:in `run_examples'
|
8218
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/command_line.rb:19:in `run'
|
8219
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/bin/spec:4
|
8220
|
+
/opt/local/bin/spec:19:in `load'
|
8221
|
+
/opt/local/bin/spec:19
|
8222
|
+
~ Params: {"format"=>nil, "action"=>"book", "id"=>"milan", "controller"=>"tickets"}
|
8223
|
+
~ Params: {"format"=>nil, "action"=>"book", "id"=>"milan", "controller"=>"tickets"}
|
8224
|
+
~ Started request handling: Tue Sep 02 20:37:27 +0300 2008
|
8225
|
+
~ Controller class not found for controller `products'
|
8226
|
+
~ Controller class not found for controller `products' - (Merb::ControllerExceptions::NotFound)
|
8227
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/request.rb:54:in `controller'
|
8228
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:46:in `handle'
|
8229
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:29:in `handle'
|
8230
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/route_params_spec.rb:27
|
8231
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:84:in `instance_eval'
|
8232
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:84:in `run_with_description_capturing'
|
8233
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:21:in `execute'
|
8234
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
8235
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:18:in `execute'
|
8236
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:303:in `execute_examples'
|
8237
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:302:in `each'
|
8238
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:302:in `execute_examples'
|
8239
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:130:in `run'
|
8240
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:22:in `run'
|
8241
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:21:in `each'
|
8242
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:21:in `run'
|
8243
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/options.rb:106:in `run_examples'
|
8244
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/command_line.rb:19:in `run'
|
8245
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/bin/spec:4
|
8246
|
+
/opt/local/bin/spec:19:in `load'
|
8247
|
+
/opt/local/bin/spec:19
|
8248
|
+
~ Params: {"format"=>nil, "action"=>"show", "id"=>"54", "controller"=>"products"}
|
8249
|
+
~ Dispatching Merb::ControllerExceptions::NotFound raised another error.
|
8250
|
+
~ Oops! No template found. Merb was looking for /Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/fixture/app/views/exceptions/not_found.html.erbfor content type 'html'. You might have mispelled the template or file name. Registered template extensions: erb. If you use Haml or some other template plugin, make sure you required Merb plugin dependency in your init file. - (Merb::ControllerExceptions::TemplateNotFound)
|
8251
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/mixins/render.rb:112:in `render'
|
8252
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/fixture/app/controllers/exceptions.rb:9:in `not_found'
|
8253
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:272:in `send'
|
8254
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:272:in `_call_action'
|
8255
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/abstract_controller.rb:252:in `_dispatch'
|
8256
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/controller/merb_controller.rb:198:in `_dispatch'
|
8257
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:115:in `dispatch_action'
|
8258
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:115:in `synchronize'
|
8259
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:115:in `dispatch_action'
|
8260
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:149:in `dispatch_exception'
|
8261
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:67:in `handle'
|
8262
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/../../../lib/merb-core/dispatch/dispatcher.rb:29:in `handle'
|
8263
|
+
/Users/antares/dev/opensource/merb/merb-core/spec/private/dispatch/route_params_spec.rb:27
|
8264
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:84:in `instance_eval'
|
8265
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:84:in `run_with_description_capturing'
|
8266
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:21:in `execute'
|
8267
|
+
/usr/local/lib/ruby/1.8/timeout.rb:48:in `timeout'
|
8268
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb:18:in `execute'
|
8269
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:303:in `execute_examples'
|
8270
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:302:in `each'
|
8271
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:302:in `execute_examples'
|
8272
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb:130:in `run'
|
8273
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:22:in `run'
|
8274
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:21:in `each'
|
8275
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb:21:in `run'
|
8276
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/options.rb:106:in `run_examples'
|
8277
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/command_line.rb:19:in `run'
|
8278
|
+
/usr/local/lib/ruby/gems/1.8/gems/rspec-1.1.4/bin/spec:4
|
8279
|
+
/opt/local/bin/spec:19:in `load'
|
8280
|
+
/opt/local/bin/spec:19
|
8281
|
+
~ Params: {"format"=>nil, "action"=>"show", "id"=>"54", "controller"=>"products"}
|
8282
|
+
~ Params: {"format"=>nil, "action"=>"show", "id"=>"54", "controller"=>"products"}
|
8283
|
+
~ Started request handling: Tue Sep 02 20:37:27 +0300 2008
|
8284
|
+
~ Controller class not found for controller `tickets'
|
8285
|
+
~ Loaded TEST Environment...
|
8286
|
+
~ Compiling routes...
|
8287
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
8288
|
+
~ Started request handling: Wed Sep 03 03:22:49 +0300 2008
|
8289
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8290
|
+
~ {:after_filters_time=>1.6e-05, :dispatch_time=>0.001426, :before_filters_time=>1.8e-05, :action_time=>0.00116}
|
8291
|
+
~ Started request handling: Wed Sep 03 03:22:49 +0300 2008
|
8292
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8293
|
+
~ {:after_filters_time=>5.0e-06, :dispatch_time=>0.000476, :before_filters_time=>5.0e-06, :action_time=>0.000297}
|
8294
|
+
~ Loaded TEST Environment...
|
8295
|
+
~ Compiling routes...
|
8296
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
8297
|
+
~ Started request handling: Thu Sep 04 06:51:36 +0300 2008
|
8298
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8299
|
+
~ {:after_filters_time=>1.6e-05, :dispatch_time=>0.001436, :before_filters_time=>1.8e-05, :action_time=>0.001173}
|
8300
|
+
~ Started request handling: Thu Sep 04 06:51:36 +0300 2008
|
8301
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8302
|
+
~ {:after_filters_time=>6.0e-06, :dispatch_time=>0.000636, :before_filters_time=>6.0e-06, :action_time=>0.000455}
|
8303
|
+
~ Loaded TEST Environment...
|
8304
|
+
~ Compiling routes...
|
8305
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
8306
|
+
~ Started request handling: Thu Sep 04 11:03:19 +0300 2008
|
8307
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8308
|
+
~ {:after_filters_time=>1.6e-05, :dispatch_time=>0.001608, :before_filters_time=>1.9e-05, :action_time=>0.001231}
|
8309
|
+
~ Started request handling: Thu Sep 04 11:03:19 +0300 2008
|
8310
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8311
|
+
~ {:after_filters_time=>6.0e-06, :dispatch_time=>0.000472, :before_filters_time=>6.0e-06, :action_time=>0.000291}
|
8312
|
+
~ Loaded TEST Environment...
|
8313
|
+
~ Compiling routes...
|
8314
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
8315
|
+
~ Started request handling: Thu Sep 04 16:37:45 +0300 2008
|
8316
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8317
|
+
~ {:action_time=>0.002399, :after_filters_time=>1.6e-05, :before_filters_time=>0.000957, :dispatch_time=>0.002696}
|
8318
|
+
~ Started request handling: Thu Sep 04 16:37:45 +0300 2008
|
8319
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8320
|
+
~ {:action_time=>0.000328, :after_filters_time=>6.0e-06, :before_filters_time=>7.0e-06, :dispatch_time=>0.000609}
|
8321
|
+
~ Loaded TEST Environment...
|
8322
|
+
~ Compiling routes...
|
8323
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
8324
|
+
~ Started request handling: Fri Sep 05 23:15:23 +0300 2008
|
8325
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8326
|
+
~ {:action_time=>0.001498, :after_filters_time=>1.6e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.001768}
|
8327
|
+
~ Started request handling: Fri Sep 05 23:15:23 +0300 2008
|
8328
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8329
|
+
~ {:action_time=>0.000304, :after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.00062}
|
8330
|
+
~ Loaded TEST Environment...
|
8331
|
+
~ Compiling routes...
|
8332
|
+
~ Started request handling: Sat Sep 06 00:40:50 +0300 2008
|
8333
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8334
|
+
~ {:after_filters_time=>1.7e-05, :dispatch_time=>0.001076, :action_time=>0.000717, :before_filters_time=>1.7e-05}
|
8335
|
+
~ Started request handling: Sat Sep 06 00:40:50 +0300 2008
|
8336
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8337
|
+
~ {:after_filters_time=>5.0e-06, :dispatch_time=>0.000511, :action_time=>0.00028, :before_filters_time=>6.0e-06}
|
8338
|
+
~ Loaded TEST Environment...
|
8339
|
+
~ Compiling routes...
|
8340
|
+
~ Started request handling: Sat Sep 06 00:45:08 +0300 2008
|
8341
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8342
|
+
~ {:dispatch_time=>0.000892, :after_filters_time=>1.6e-05, :action_time=>0.000581, :before_filters_time=>1.6e-05}
|
8343
|
+
~ Started request handling: Sat Sep 06 00:45:08 +0300 2008
|
8344
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8345
|
+
~ {:dispatch_time=>0.000669, :after_filters_time=>6.0e-06, :action_time=>0.000465, :before_filters_time=>6.0e-06}
|
8346
|
+
~ Loaded TEST Environment...
|
8347
|
+
~ Compiling routes...
|
8348
|
+
~ Started request handling: Sat Sep 06 01:12:44 +0300 2008
|
8349
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8350
|
+
~ {:dispatch_time=>0.000855, :after_filters_time=>1.5e-05, :action_time=>0.000563, :before_filters_time=>1.7e-05}
|
8351
|
+
~ Started request handling: Sat Sep 06 01:12:44 +0300 2008
|
8352
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8353
|
+
~ {:dispatch_time=>0.000401, :after_filters_time=>5.0e-06, :action_time=>0.000235, :before_filters_time=>5.0e-06}
|
8354
|
+
~ Loaded TEST Environment...
|
8355
|
+
~ Compiling routes...
|
8356
|
+
~ Started request handling: Sat Sep 06 01:18:30 +0300 2008
|
8357
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8358
|
+
~ {:dispatch_time=>0.000856, :after_filters_time=>1.6e-05, :action_time=>0.000568, :before_filters_time=>1.7e-05}
|
8359
|
+
~ Started request handling: Sat Sep 06 01:18:30 +0300 2008
|
8360
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8361
|
+
~ {:dispatch_time=>0.000588, :after_filters_time=>5.0e-06, :action_time=>0.000371, :before_filters_time=>6.0e-06}
|
8362
|
+
~ Loaded TEST Environment...
|
8363
|
+
~ Compiling routes...
|
8364
|
+
~ Started request handling: Sat Sep 06 01:28:44 +0300 2008
|
8365
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8366
|
+
~ {:dispatch_time=>0.001002, :after_filters_time=>1.6e-05, :action_time=>0.000679, :before_filters_time=>6.7e-05}
|
8367
|
+
~ Started request handling: Sat Sep 06 01:28:44 +0300 2008
|
8368
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8369
|
+
~ {:dispatch_time=>0.00066, :after_filters_time=>7.0e-06, :action_time=>0.000352, :before_filters_time=>8.0e-06}
|
8370
|
+
~ Loaded TEST Environment...
|
8371
|
+
~ Compiling routes...
|
8372
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
8373
|
+
~ Started request handling: Sat Sep 06 01:35:42 +0300 2008
|
8374
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8375
|
+
~ {:after_filters_time=>2.0e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.002127, :action_time=>0.001828}
|
8376
|
+
~ Started request handling: Sat Sep 06 01:35:42 +0300 2008
|
8377
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8378
|
+
~ {:after_filters_time=>7.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.000559, :action_time=>0.000329}
|
8379
|
+
~ Loaded TEST Environment...
|
8380
|
+
~ Compiling routes...
|
8381
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
8382
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
8383
|
+
~ Started request handling: Sat Sep 06 01:36:43 +0300 2008
|
8384
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8385
|
+
~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.9e-05, :dispatch_time=>0.001638, :action_time=>0.001338}
|
8386
|
+
~ Started request handling: Sat Sep 06 01:36:43 +0300 2008
|
8387
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8388
|
+
~ {:after_filters_time=>7.0e-06, :before_filters_time=>7.0e-06, :dispatch_time=>0.000907, :action_time=>0.00069}
|
8389
|
+
~ Loaded TEST Environment...
|
8390
|
+
~ Compiling routes...
|
8391
|
+
~ Started request handling: Sat Sep 06 02:24:49 +0300 2008
|
8392
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8393
|
+
~ {:dispatch_time=>0.000802, :after_filters_time=>1.5e-05, :action_time=>0.000525, :before_filters_time=>1.6e-05}
|
8394
|
+
~ Started request handling: Sat Sep 06 02:24:49 +0300 2008
|
8395
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8396
|
+
~ {:dispatch_time=>0.000447, :after_filters_time=>5.0e-06, :action_time=>0.000276, :before_filters_time=>5.0e-06}
|
8397
|
+
~ Loaded TEST Environment...
|
8398
|
+
~ Compiling routes...
|
8399
|
+
~ Started request handling: Sat Sep 06 02:41:03 +0300 2008
|
8400
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8401
|
+
~ {:dispatch_time=>0.001016, :after_filters_time=>1.7e-05, :action_time=>0.000682, :before_filters_time=>1.8e-05}
|
8402
|
+
~ Started request handling: Sat Sep 06 02:41:03 +0300 2008
|
8403
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8404
|
+
~ {:dispatch_time=>0.000514, :after_filters_time=>7.0e-06, :action_time=>0.000294, :before_filters_time=>8.0e-06}
|
8405
|
+
~ Loaded TEST Environment...
|
8406
|
+
~ Compiling routes...
|
8407
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
8408
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
8409
|
+
~ Started request handling: Sat Sep 06 02:43:12 +0300 2008
|
8410
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8411
|
+
~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.7e-05, :dispatch_time=>0.001484, :action_time=>0.001219}
|
8412
|
+
~ Started request handling: Sat Sep 06 02:43:12 +0300 2008
|
8413
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8414
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.000461, :action_time=>0.000279}
|
8415
|
+
~ Loaded TEST Environment...
|
8416
|
+
~ Compiling routes...
|
8417
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
8418
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
8419
|
+
~ Started request handling: Sat Sep 06 02:44:19 +0300 2008
|
8420
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8421
|
+
~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.001498, :action_time=>0.001228}
|
8422
|
+
~ Started request handling: Sat Sep 06 02:44:19 +0300 2008
|
8423
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8424
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.00054, :action_time=>0.000302}
|
8425
|
+
~ Loaded TEST Environment...
|
8426
|
+
~ Compiling routes...
|
8427
|
+
~ Started request handling: Sat Sep 06 03:17:05 +0300 2008
|
8428
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8429
|
+
~ {:dispatch_time=>0.000856, :after_filters_time=>1.5e-05, :action_time=>0.000576, :before_filters_time=>1.6e-05}
|
8430
|
+
~ Started request handling: Sat Sep 06 03:17:05 +0300 2008
|
8431
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8432
|
+
~ {:dispatch_time=>0.000868, :after_filters_time=>8.0e-06, :action_time=>0.000502, :before_filters_time=>1.3e-05}
|
8433
|
+
~ Loaded TEST Environment...
|
8434
|
+
~ Compiling routes...
|
8435
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
8436
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
8437
|
+
~ Started request handling: Sat Sep 06 12:00:59 +0300 2008
|
8438
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8439
|
+
~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.7e-05, :dispatch_time=>0.001479, :action_time=>0.001217}
|
8440
|
+
~ Started request handling: Sat Sep 06 12:00:59 +0300 2008
|
8441
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8442
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>5.0e-06, :dispatch_time=>0.000476, :action_time=>0.000283}
|
8443
|
+
~ Loaded TEST Environment...
|
8444
|
+
~ Compiling routes...
|
8445
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
8446
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
8447
|
+
~ Started request handling: Sat Sep 06 12:06:04 +0300 2008
|
8448
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8449
|
+
~ {:after_filters_time=>1.9e-05, :before_filters_time=>1.9e-05, :dispatch_time=>0.001627, :action_time=>0.001319}
|
8450
|
+
~ Started request handling: Sat Sep 06 12:06:04 +0300 2008
|
8451
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8452
|
+
~ {:after_filters_time=>7.0e-06, :before_filters_time=>7.0e-06, :dispatch_time=>0.000519, :action_time=>0.000309}
|
8453
|
+
~ Loaded TEST Environment...
|
8454
|
+
~ Compiling routes...
|
8455
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
8456
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
8457
|
+
~ Started request handling: Sat Sep 06 12:08:02 +0300 2008
|
8458
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8459
|
+
~ {:after_filters_time=>1.8e-05, :before_filters_time=>2.0e-05, :dispatch_time=>0.001838, :action_time=>0.001491}
|
8460
|
+
~ Started request handling: Sat Sep 06 12:08:02 +0300 2008
|
8461
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8462
|
+
~ {:after_filters_time=>7.0e-06, :before_filters_time=>7.0e-06, :dispatch_time=>0.000629, :action_time=>0.000386}
|
8463
|
+
~ Loaded TEST Environment...
|
8464
|
+
~ Compiling routes...
|
8465
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
8466
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
8467
|
+
~ Started request handling: Sat Sep 06 12:08:23 +0300 2008
|
8468
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8469
|
+
~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.001792, :action_time=>0.001528}
|
8470
|
+
~ Started request handling: Sat Sep 06 12:08:23 +0300 2008
|
8471
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8472
|
+
~ {:after_filters_time=>1.0e-05, :before_filters_time=>1.3e-05, :dispatch_time=>0.000525, :action_time=>0.000343}
|
8473
|
+
~ Loaded TEST Environment...
|
8474
|
+
~ Compiling routes...
|
8475
|
+
~ Started request handling: Sat Sep 06 13:09:10 +0300 2008
|
8476
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8477
|
+
~ {:dispatch_time=>0.000792, :after_filters_time=>1.5e-05, :action_time=>0.000526, :before_filters_time=>1.6e-05}
|
8478
|
+
~ Started request handling: Sat Sep 06 13:09:10 +0300 2008
|
8479
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8480
|
+
~ {:dispatch_time=>0.000412, :after_filters_time=>4.0e-06, :action_time=>0.000232, :before_filters_time=>5.0e-06}
|
8481
|
+
~ Loaded TEST Environment...
|
8482
|
+
~ Compiling routes...
|
8483
|
+
~ Started request handling: Sat Sep 06 14:00:29 +0300 2008
|
8484
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8485
|
+
~ {:dispatch_time=>0.000782, :after_filters_time=>1.5e-05, :action_time=>0.000518, :before_filters_time=>1.6e-05}
|
8486
|
+
~ Started request handling: Sat Sep 06 14:00:29 +0300 2008
|
8487
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8488
|
+
~ {:dispatch_time=>0.001381, :after_filters_time=>7.6e-05, :action_time=>0.000873, :before_filters_time=>1.4e-05}
|
8489
|
+
~ Loaded TEST Environment...
|
8490
|
+
~ Compiling routes...
|
8491
|
+
~ Using 'share-nothing' cookie sessions (4kb limit per client)
|
8492
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
8493
|
+
~ Started request handling: Sat Sep 06 14:12:53 +0300 2008
|
8494
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8495
|
+
~ {:after_filters_time=>1.8e-05, :before_filters_time=>1.9e-05, :dispatch_time=>0.001767, :action_time=>0.001428}
|
8496
|
+
~ Started request handling: Sat Sep 06 14:12:53 +0300 2008
|
8497
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8498
|
+
~ {:after_filters_time=>7.0e-06, :before_filters_time=>1.6e-05, :dispatch_time=>0.000583, :action_time=>0.00035}
|
8499
|
+
~ Loaded TEST Environment...
|
8500
|
+
~ Compiling routes...
|
8501
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
8502
|
+
~ Started request handling: Sat Sep 06 14:42:37 +0300 2008
|
8503
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8504
|
+
~ {:dispatch_time=>0.001032, :after_filters_time=>1.6e-05, :action_time=>0.00058, :before_filters_time=>1.7e-05}
|
8505
|
+
~ Started request handling: Sat Sep 06 14:42:37 +0300 2008
|
8506
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8507
|
+
~ {:dispatch_time=>0.002673, :after_filters_time=>6.0e-06, :action_time=>0.000316, :before_filters_time=>6.0e-06}
|
8508
|
+
~ Loaded TEST Environment...
|
8509
|
+
~ Compiling routes...
|
8510
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
8511
|
+
~ Started request handling: Sat Sep 06 14:43:58 +0300 2008
|
8512
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8513
|
+
~ {:dispatch_time=>0.000901, :after_filters_time=>1.6e-05, :action_time=>0.000581, :before_filters_time=>1.6e-05}
|
8514
|
+
~ Started request handling: Sat Sep 06 14:43:58 +0300 2008
|
8515
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8516
|
+
~ {:dispatch_time=>0.00046, :after_filters_time=>5.0e-06, :action_time=>0.000265, :before_filters_time=>5.0e-06}
|
8517
|
+
~ Loaded TEST Environment...
|
8518
|
+
~ Compiling routes...
|
8519
|
+
~ Started request handling: Sat Sep 06 14:46:09 +0300 2008
|
8520
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8521
|
+
~ {:dispatch_time=>0.000905, :after_filters_time=>1.5e-05, :action_time=>0.000574, :before_filters_time=>1.6e-05}
|
8522
|
+
~ Started request handling: Sat Sep 06 14:46:09 +0300 2008
|
8523
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8524
|
+
~ {:dispatch_time=>0.000838, :after_filters_time=>6.0e-06, :action_time=>0.00055, :before_filters_time=>8.0e-06}
|
8525
|
+
~ Loaded TEST Environment...
|
8526
|
+
~ Compiling routes...
|
8527
|
+
~ Started request handling: Sat Sep 06 14:47:14 +0300 2008
|
8528
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8529
|
+
~ {:dispatch_time=>0.000834, :after_filters_time=>1.5e-05, :action_time=>0.000561, :before_filters_time=>1.7e-05}
|
8530
|
+
~ Started request handling: Sat Sep 06 14:47:14 +0300 2008
|
8531
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8532
|
+
~ {:dispatch_time=>0.000583, :after_filters_time=>6.0e-06, :action_time=>0.000308, :before_filters_time=>8.0e-06}
|
8533
|
+
~ Loaded TEST Environment...
|
8534
|
+
~ Compiling routes...
|
8535
|
+
~ Started request handling: Sat Sep 06 15:27:02 +0300 2008
|
8536
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8537
|
+
~ {:dispatch_time=>0.000777, :after_filters_time=>1.5e-05, :action_time=>0.000516, :before_filters_time=>1.6e-05}
|
8538
|
+
~ Started request handling: Sat Sep 06 15:27:02 +0300 2008
|
8539
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8540
|
+
~ {:dispatch_time=>0.000842, :after_filters_time=>9.0e-06, :action_time=>0.000461, :before_filters_time=>1.1e-05}
|
8541
|
+
~ Loaded TEST Environment...
|
8542
|
+
~ Compiling routes...
|
8543
|
+
~ Started request handling: Sat Sep 06 15:44:34 +0300 2008
|
8544
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8545
|
+
~ {:action_time=>0.000531, :before_filters_time=>1.6e-05, :dispatch_time=>0.000816, :after_filters_time=>1.6e-05}
|
8546
|
+
~ Started request handling: Sat Sep 06 15:44:34 +0300 2008
|
8547
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8548
|
+
~ {:action_time=>0.000235, :before_filters_time=>5.0e-06, :dispatch_time=>0.00041, :after_filters_time=>5.0e-06}
|
8549
|
+
~ Loaded TEST Environment...
|
8550
|
+
~ Compiling routes...
|
8551
|
+
~ Started request handling: Sat Sep 06 15:50:13 +0300 2008
|
8552
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8553
|
+
~ {:action_time=>0.00053, :before_filters_time=>1.6e-05, :dispatch_time=>0.000803, :after_filters_time=>1.6e-05}
|
8554
|
+
~ Started request handling: Sat Sep 06 15:50:13 +0300 2008
|
8555
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8556
|
+
~ {:action_time=>0.00029, :before_filters_time=>6.0e-06, :dispatch_time=>0.000914, :after_filters_time=>5.0e-06}
|
8557
|
+
~ Loaded TEST Environment...
|
8558
|
+
~ Compiling routes...
|
8559
|
+
~ Started request handling: Sat Sep 06 16:07:13 +0300 2008
|
8560
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8561
|
+
~ {:action_time=>0.000517, :before_filters_time=>1.6e-05, :dispatch_time=>0.000793, :after_filters_time=>1.5e-05}
|
8562
|
+
~ Started request handling: Sat Sep 06 16:07:13 +0300 2008
|
8563
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8564
|
+
~ {:action_time=>0.000232, :before_filters_time=>5.0e-06, :dispatch_time=>0.000396, :after_filters_time=>5.0e-06}
|
8565
|
+
~ Loaded TEST Environment...
|
8566
|
+
~ Compiling routes...
|
8567
|
+
~ Started request handling: Sat Sep 06 16:08:56 +0300 2008
|
8568
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8569
|
+
~ {:action_time=>0.000616, :before_filters_time=>1.6e-05, :dispatch_time=>0.000887, :after_filters_time=>1.6e-05}
|
8570
|
+
~ Started request handling: Sat Sep 06 16:08:56 +0300 2008
|
8571
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8572
|
+
~ {:action_time=>0.000724, :before_filters_time=>1.4e-05, :dispatch_time=>0.001215, :after_filters_time=>9.0e-06}
|
8573
|
+
~ Loaded TEST Environment...
|
8574
|
+
~ Compiling routes...
|
8575
|
+
~ Started request handling: Sat Sep 06 16:48:07 +0300 2008
|
8576
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8577
|
+
~ {:action_time=>0.000595, :before_filters_time=>1.7e-05, :after_filters_time=>1.7e-05, :dispatch_time=>0.000925}
|
8578
|
+
~ Started request handling: Sat Sep 06 16:48:07 +0300 2008
|
8579
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8580
|
+
~ {:action_time=>0.000266, :before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :dispatch_time=>0.000481}
|
8581
|
+
~ Loaded TEST Environment...
|
8582
|
+
~ Compiling routes...
|
8583
|
+
~ Started request handling: Sat Sep 06 16:55:16 +0300 2008
|
8584
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8585
|
+
~ {:action_time=>0.000532, :before_filters_time=>1.7e-05, :dispatch_time=>0.000808, :after_filters_time=>1.7e-05}
|
8586
|
+
~ Started request handling: Sat Sep 06 16:55:16 +0300 2008
|
8587
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8588
|
+
~ {:action_time=>0.000223, :before_filters_time=>5.0e-06, :dispatch_time=>0.000402, :after_filters_time=>5.0e-06}
|
8589
|
+
~ Loaded TEST Environment...
|
8590
|
+
~ Compiling routes...
|
8591
|
+
~ Started request handling: Sat Sep 06 16:58:48 +0300 2008
|
8592
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8593
|
+
~ {:action_time=>0.000579, :before_filters_time=>1.8e-05, :dispatch_time=>0.000889, :after_filters_time=>1.8e-05}
|
8594
|
+
~ Started request handling: Sat Sep 06 16:58:48 +0300 2008
|
8595
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8596
|
+
~ {:action_time=>0.000341, :before_filters_time=>8.0e-06, :dispatch_time=>0.000649, :after_filters_time=>7.0e-06}
|
8597
|
+
~ Loaded TEST Environment...
|
8598
|
+
~ Compiling routes...
|
8599
|
+
~ Started request handling: Sat Sep 06 17:13:31 +0300 2008
|
8600
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8601
|
+
~ {:action_time=>0.000603, :before_filters_time=>1.6e-05, :dispatch_time=>0.000932, :after_filters_time=>1.7e-05}
|
8602
|
+
~ Started request handling: Sat Sep 06 17:13:31 +0300 2008
|
8603
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8604
|
+
~ {:action_time=>0.000279, :before_filters_time=>7.0e-06, :dispatch_time=>0.000498, :after_filters_time=>7.0e-06}
|
8605
|
+
~ Loaded TEST Environment...
|
8606
|
+
~ Compiling routes...
|
8607
|
+
~ Started request handling: Sat Sep 06 17:16:38 +0300 2008
|
8608
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8609
|
+
~ {:action_time=>0.000761, :before_filters_time=>1.6e-05, :dispatch_time=>0.001075, :after_filters_time=>1.7e-05}
|
8610
|
+
~ Started request handling: Sat Sep 06 17:16:38 +0300 2008
|
8611
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8612
|
+
~ {:action_time=>0.000272, :before_filters_time=>7.0e-06, :dispatch_time=>0.000488, :after_filters_time=>6.0e-06}
|
8613
|
+
~ Loaded TEST Environment...
|
8614
|
+
~ Compiling routes...
|
8615
|
+
~ Started request handling: Sat Sep 06 17:26:28 +0300 2008
|
8616
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8617
|
+
~ {:action_time=>0.000614, :before_filters_time=>1.6e-05, :dispatch_time=>0.000891, :after_filters_time=>1.6e-05}
|
8618
|
+
~ Started request handling: Sat Sep 06 17:26:28 +0300 2008
|
8619
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8620
|
+
~ {:action_time=>0.000226, :before_filters_time=>6.0e-06, :dispatch_time=>0.000398, :after_filters_time=>5.0e-06}
|
8621
|
+
~ Loaded TEST Environment...
|
8622
|
+
~ Compiling routes...
|
8623
|
+
~ Started request handling: Sat Sep 06 23:00:03 +0300 2008
|
8624
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8625
|
+
~ {:action_time=>0.000593, :before_filters_time=>1.7e-05, :dispatch_time=>0.00097, :after_filters_time=>1.6e-05}
|
8626
|
+
~ Started request handling: Sat Sep 06 23:00:03 +0300 2008
|
8627
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8628
|
+
~ {:action_time=>0.000264, :before_filters_time=>6.0e-06, :dispatch_time=>0.000487, :after_filters_time=>5.0e-06}
|
8629
|
+
~ Loaded TEST Environment...
|
8630
|
+
~ Compiling routes...
|
8631
|
+
~ Started request handling: Sat Sep 06 23:45:51 +0300 2008
|
8632
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8633
|
+
~ {:action_time=>0.000612, :before_filters_time=>1.7e-05, :dispatch_time=>0.000942, :after_filters_time=>1.7e-05}
|
8634
|
+
~ Started request handling: Sat Sep 06 23:45:51 +0300 2008
|
8635
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8636
|
+
~ {:action_time=>0.000291, :before_filters_time=>7.0e-06, :dispatch_time=>0.000516, :after_filters_time=>6.0e-06}
|
8637
|
+
~ Loaded TEST Environment...
|
8638
|
+
~ Compiling routes...
|
8639
|
+
~ Started request handling: Sat Sep 06 23:47:14 +0300 2008
|
8640
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8641
|
+
~ {:action_time=>0.000638, :before_filters_time=>1.8e-05, :dispatch_time=>0.002539, :after_filters_time=>1.8e-05}
|
8642
|
+
~ Started request handling: Sat Sep 06 23:47:14 +0300 2008
|
8643
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8644
|
+
~ {:action_time=>0.000314, :before_filters_time=>6.0e-06, :dispatch_time=>0.000677, :after_filters_time=>6.0e-06}
|
8645
|
+
~ Loaded TEST Environment...
|
8646
|
+
~ Compiling routes...
|
8647
|
+
~ Started request handling: Sun Sep 07 01:18:28 +0300 2008
|
8648
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8649
|
+
~ {:action_time=>0.000621, :before_filters_time=>1.6e-05, :dispatch_time=>0.000967, :after_filters_time=>1.8e-05}
|
8650
|
+
~ Started request handling: Sun Sep 07 01:18:28 +0300 2008
|
8651
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8652
|
+
~ {:action_time=>0.000341, :before_filters_time=>7.0e-06, :dispatch_time=>0.000635, :after_filters_time=>6.0e-06}
|
8653
|
+
~ Loaded TEST Environment...
|
8654
|
+
~ Compiling routes...
|
8655
|
+
~ Started request handling: Sun Sep 07 01:20:19 +0300 2008
|
8656
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8657
|
+
~ {:action_time=>0.000613, :before_filters_time=>1.7e-05, :dispatch_time=>0.001095, :after_filters_time=>1.8e-05}
|
8658
|
+
~ Started request handling: Sun Sep 07 01:20:19 +0300 2008
|
8659
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8660
|
+
~ {:action_time=>0.000324, :before_filters_time=>7.0e-06, :dispatch_time=>0.000591, :after_filters_time=>3.0e-05}
|
8661
|
+
~ Loaded TEST Environment...
|
8662
|
+
~ Compiling routes...
|
8663
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
8664
|
+
~ Started request handling: Sun Sep 07 01:47:25 +0300 2008
|
8665
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8666
|
+
~ {:dispatch_time=>0.000845, :after_filters_time=>1.5e-05, :action_time=>0.000559, :before_filters_time=>1.6e-05}
|
8667
|
+
~ Started request handling: Sun Sep 07 01:47:25 +0300 2008
|
8668
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8669
|
+
~ {:dispatch_time=>0.000413, :after_filters_time=>5.0e-06, :action_time=>0.000238, :before_filters_time=>5.0e-06}
|
8670
|
+
~ Loaded TEST Environment...
|
8671
|
+
~ Compiling routes...
|
8672
|
+
~ Started request handling: Sun Sep 07 01:49:44 +0300 2008
|
8673
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8674
|
+
~ {:action_time=>0.000524, :before_filters_time=>1.6e-05, :dispatch_time=>0.000813, :after_filters_time=>1.7e-05}
|
8675
|
+
~ Started request handling: Sun Sep 07 01:49:44 +0300 2008
|
8676
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8677
|
+
~ {:action_time=>0.000265, :before_filters_time=>6.0e-06, :dispatch_time=>0.000432, :after_filters_time=>5.0e-06}
|
8678
|
+
~ Loaded TEST Environment...
|
8679
|
+
~ Compiling routes...
|
8680
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
8681
|
+
~ Started request handling: Mon Sep 08 15:26:35 +0300 2008
|
8682
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8683
|
+
~ {:action_time=>0.000509, :before_filters_time=>1.6e-05, :dispatch_time=>0.000791, :after_filters_time=>1.6e-05}
|
8684
|
+
~ Started request handling: Mon Sep 08 15:26:35 +0300 2008
|
8685
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8686
|
+
~ {:action_time=>0.00023, :before_filters_time=>5.0e-06, :dispatch_time=>0.00039, :after_filters_time=>5.0e-06}
|
8687
|
+
~ Loaded TEST Environment...
|
8688
|
+
~ Compiling routes...
|
8689
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
8690
|
+
~ Started request handling: Tue Sep 09 01:15:03 +0300 2008
|
8691
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8692
|
+
~ {:action_time=>0.00055, :before_filters_time=>1.7e-05, :dispatch_time=>0.000838, :after_filters_time=>1.7e-05}
|
8693
|
+
~ Started request handling: Tue Sep 09 01:15:03 +0300 2008
|
8694
|
+
~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
|
8695
|
+
~ {:action_time=>0.000236, :before_filters_time=>6.0e-06, :dispatch_time=>0.000434, :after_filters_time=>6.0e-06}
|