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
@@ -57,6 +57,11 @@ describe Merb::Controller, " url" do
|
|
57
57
|
@controller.url(:controller => "monkeys", :action => "list", :id => 4, :format => "xml").
|
58
58
|
should eql("/monkeys/list/4.xml")
|
59
59
|
end
|
60
|
+
|
61
|
+
it "should match the :controller,:action,:id,:format,:fragment to the default route" do
|
62
|
+
@controller.url(:controller => "monkeys", :action => "list", :id => 4, :format => "xml", :fragment => :half_way).
|
63
|
+
should eql("/monkeys/list/4.xml#half_way")
|
64
|
+
end
|
60
65
|
|
61
66
|
it "should raise an error" do
|
62
67
|
lambda { @controller.url(:regexp) }.should raise_error
|
@@ -78,10 +83,19 @@ describe Merb::Controller, " url" do
|
|
78
83
|
@controller.url(:person, :name => 'david', :format => :xml).should eql("/people/david.xml")
|
79
84
|
end
|
80
85
|
|
86
|
+
it "should match with a :fragment" do
|
87
|
+
@controller.url(:person, :name => 'david', :fragment => :half_way).should eql("/people/david#half_way")
|
88
|
+
end
|
89
|
+
|
81
90
|
it "should match with an additional param and :format" do
|
82
91
|
@controller.url(:person, :name => 'david', :color => 'blue', :format => :xml).should eql("/people/david.xml?color=blue")
|
83
92
|
end
|
84
93
|
|
94
|
+
it "should match with an additional param, :format, and :fragment" do
|
95
|
+
@controller.url(:person, :name => 'david', :color => 'blue', :format => :xml, :fragment => :half_way).
|
96
|
+
should eql("/people/david.xml?color=blue#half_way")
|
97
|
+
end
|
98
|
+
|
85
99
|
it "should match with additional params" do
|
86
100
|
url = @controller.url(:person, :name => 'david', :smell => 'funky', :color => 'blue')
|
87
101
|
url.should match(%r{/people/david?.*color=blue})
|
@@ -114,6 +128,11 @@ describe Merb::Controller, " url" do
|
|
114
128
|
@monkey = Monkey.new
|
115
129
|
@controller.url(:monkey, :id => @monkey, :format => :xml, :color => "blue").should == "/monkeys/45.xml?color=blue"
|
116
130
|
end
|
131
|
+
|
132
|
+
it "should match with an object, :format, :fragment, and additional options" do
|
133
|
+
@monkey = Monkey.new
|
134
|
+
@controller.url(:monkey, :id => @monkey, :format => :xml, :color => "blue", :fragment => :half_way).should == "/monkeys/45.xml?color=blue#half_way"
|
135
|
+
end
|
117
136
|
|
118
137
|
it "should match the delete_monkey route" do
|
119
138
|
@monkey = Monkey.new
|
@@ -171,10 +190,60 @@ describe Merb::Controller, " url" do
|
|
171
190
|
@monkey = Monkey.new
|
172
191
|
@controller.url(:monkey, @monkey, :foo => "bar").should == "/monkeys/45?foo=bar"
|
173
192
|
end
|
193
|
+
it "should match resource with fragment" do
|
194
|
+
@monkey = Monkey.new
|
195
|
+
@controller.url(:monkey, @monkey, :fragment => :half_way).should == "/monkeys/45#half_way"
|
196
|
+
end
|
174
197
|
|
175
198
|
it "should match a nested resource with additional params" do
|
176
199
|
@blue = Blue.new
|
177
200
|
@controller.url(:monkey_blue, @blue, :foo => "bar").should == "/monkeys/45/blues/13?foo=bar"
|
178
201
|
end
|
202
|
+
|
203
|
+
it "should match a nested resource with additional params and fragment" do
|
204
|
+
@blue = Blue.new
|
205
|
+
@controller.url(:monkey_blue, @blue, :foo => "bar", :fragment => :half_way).should == "/monkeys/45/blues/13?foo=bar#half_way"
|
206
|
+
end
|
207
|
+
|
208
|
+
end
|
209
|
+
|
210
|
+
|
179
211
|
|
180
|
-
|
212
|
+
|
213
|
+
describe Merb::Controller, "absolute_url" do
|
214
|
+
before do
|
215
|
+
@controller = dispatch_to(Merb::Test::Fixtures::Controllers::Url, :index)
|
216
|
+
end
|
217
|
+
|
218
|
+
it 'takes :protocol option' do
|
219
|
+
@monkey = Monkey.new
|
220
|
+
@controller.absolute_url(:monkey,
|
221
|
+
:id => @monkey,
|
222
|
+
:format => :xml,
|
223
|
+
:protocol => "https").should == "https://localhost/monkeys/45.xml"
|
224
|
+
end
|
225
|
+
|
226
|
+
it 'takes :host option' do
|
227
|
+
@monkey = Monkey.new
|
228
|
+
@controller.absolute_url(:monkey,
|
229
|
+
:id => @monkey,
|
230
|
+
:format => :xml,
|
231
|
+
:protocol => "https",
|
232
|
+
:host => "rubyisnotrails.org").should == "https://rubyisnotrails.org/monkeys/45.xml"
|
233
|
+
end
|
234
|
+
|
235
|
+
it 'falls back to request protocol' do
|
236
|
+
@monkey = Monkey.new
|
237
|
+
@controller.absolute_url(:monkey,
|
238
|
+
:id => @monkey,
|
239
|
+
:format => :xml).should == "http://localhost/monkeys/45.xml"
|
240
|
+
end
|
241
|
+
|
242
|
+
it 'falls back to request host' do
|
243
|
+
@monkey = Monkey.new
|
244
|
+
@controller.absolute_url(:monkey,
|
245
|
+
:id => @monkey,
|
246
|
+
:format => :xml,
|
247
|
+
:protocol => "https").should == "https://localhost/monkeys/45.xml"
|
248
|
+
end
|
249
|
+
end
|
@@ -4013,3 +4013,464 @@ Restarting Worker Thread
|
|
4013
4013
|
~ {:after_filters_time=>6.0e-06, :before_filters_time=>5.0e-06, :action_time=>0.000645}
|
4014
4014
|
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4015
4015
|
~ {:after_filters_time=>1.0e-05, :before_filters_time=>1.0e-05, :action_time=>0.000657}
|
4016
|
+
~ Not Using Sessions
|
4017
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4018
|
+
~ {:action_time=>0.000267, :after_filters_time=>1.5e-05, :before_filters_time=>1.7e-05}
|
4019
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4020
|
+
~ {:action_time=>0.000883, :after_filters_time=>7.0e-06, :before_filters_time=>6.0e-06}
|
4021
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4022
|
+
~ {:action_time=>0.000886, :after_filters_time=>1.2e-05, :before_filters_time=>1.2e-05}
|
4023
|
+
~ Not Using Sessions
|
4024
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4025
|
+
~ {:before_filters_time=>2.4e-05, :action_time=>0.000229, :after_filters_time=>2.2e-05}
|
4026
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4027
|
+
~ {:before_filters_time=>9.0e-06, :action_time=>0.00151, :after_filters_time=>1.1e-05}
|
4028
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4029
|
+
~ {:before_filters_time=>1.8e-05, :action_time=>0.00184, :after_filters_time=>1.8e-05}
|
4030
|
+
~ Not Using Sessions
|
4031
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4032
|
+
~ {:action_time=>0.000205, :after_filters_time=>1.6e-05, :before_filters_time=>1.7e-05}
|
4033
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4034
|
+
~ {:action_time=>0.001092, :after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06}
|
4035
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4036
|
+
~ {:action_time=>0.001029, :after_filters_time=>1.1e-05, :before_filters_time=>1.1e-05}
|
4037
|
+
~ Not Using Sessions
|
4038
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4039
|
+
~ {:action_time=>0.000171, :after_filters_time=>1.4e-05, :before_filters_time=>1.6e-05}
|
4040
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4041
|
+
~ {:action_time=>0.000657, :after_filters_time=>5.0e-06, :before_filters_time=>6.0e-06}
|
4042
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4043
|
+
~ {:action_time=>0.00071, :after_filters_time=>1.1e-05, :before_filters_time=>1.0e-05}
|
4044
|
+
~ Not Using Sessions
|
4045
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4046
|
+
~ {:action_time=>0.000166, :after_filters_time=>1.4e-05, :before_filters_time=>1.6e-05}
|
4047
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4048
|
+
~ {:action_time=>0.000698, :after_filters_time=>6.0e-06, :before_filters_time=>5.0e-06}
|
4049
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4050
|
+
~ {:action_time=>0.000656, :after_filters_time=>1.0e-05, :before_filters_time=>1.0e-05}
|
4051
|
+
~ Not Using Sessions
|
4052
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4053
|
+
~ {:action_time=>0.000182, :after_filters_time=>1.4e-05, :before_filters_time=>1.7e-05}
|
4054
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4055
|
+
~ {:action_time=>0.000769, :after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06}
|
4056
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4057
|
+
~ {:action_time=>0.001129, :after_filters_time=>1.2e-05, :before_filters_time=>1.0e-05}
|
4058
|
+
~ Not Using Sessions
|
4059
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4060
|
+
~ {:action_time=>0.000183, :after_filters_time=>1.4e-05, :before_filters_time=>1.7e-05}
|
4061
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4062
|
+
~ {:action_time=>0.001489, :after_filters_time=>7.0e-06, :before_filters_time=>6.0e-06}
|
4063
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4064
|
+
~ {:action_time=>0.000785, :after_filters_time=>1.1e-05, :before_filters_time=>1.2e-05}
|
4065
|
+
~ Not Using Sessions
|
4066
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4067
|
+
~ {:action_time=>0.000211, :after_filters_time=>5.5e-05, :before_filters_time=>1.6e-05}
|
4068
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4069
|
+
~ {:action_time=>0.000644, :after_filters_time=>5.0e-06, :before_filters_time=>5.0e-06}
|
4070
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4071
|
+
~ {:action_time=>0.000703, :after_filters_time=>1.0e-05, :before_filters_time=>1.0e-05}
|
4072
|
+
~ Not Using Sessions
|
4073
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4074
|
+
~ {:action_time=>0.000175, :after_filters_time=>1.4e-05, :before_filters_time=>1.6e-05}
|
4075
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4076
|
+
~ {:action_time=>0.000654, :after_filters_time=>5.0e-06, :before_filters_time=>5.0e-06}
|
4077
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4078
|
+
~ {:action_time=>0.000695, :after_filters_time=>9.0e-06, :before_filters_time=>1.0e-05}
|
4079
|
+
~ Not Using Sessions
|
4080
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4081
|
+
~ {:action_time=>0.000196, :after_filters_time=>1.4e-05, :before_filters_time=>1.8e-05}
|
4082
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4083
|
+
~ {:action_time=>0.000771, :after_filters_time=>7.0e-06, :before_filters_time=>5.0e-06}
|
4084
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4085
|
+
~ {:action_time=>0.000795, :after_filters_time=>1.2e-05, :before_filters_time=>1.1e-05}
|
4086
|
+
~ Not Using Sessions
|
4087
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4088
|
+
~ {:action_time=>0.000168, :after_filters_time=>1.3e-05, :before_filters_time=>1.7e-05}
|
4089
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4090
|
+
~ {:action_time=>0.000635, :after_filters_time=>6.0e-06, :before_filters_time=>5.0e-06}
|
4091
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4092
|
+
~ {:action_time=>0.000674, :after_filters_time=>1.0e-05, :before_filters_time=>1.0e-05}
|
4093
|
+
~ Not Using Sessions
|
4094
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4095
|
+
~ {:action_time=>0.000176, :after_filters_time=>1.3e-05, :before_filters_time=>1.6e-05}
|
4096
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4097
|
+
~ {:action_time=>0.000647, :after_filters_time=>5.0e-06, :before_filters_time=>5.0e-06}
|
4098
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4099
|
+
~ {:action_time=>0.001272, :after_filters_time=>1.1e-05, :before_filters_time=>1.0e-05}
|
4100
|
+
~ Not Using Sessions
|
4101
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4102
|
+
~ {:action_time=>0.000196, :after_filters_time=>1.4e-05, :before_filters_time=>1.7e-05}
|
4103
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4104
|
+
~ {:action_time=>0.000825, :after_filters_time=>7.0e-06, :before_filters_time=>5.0e-06}
|
4105
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4106
|
+
~ {:action_time=>0.000875, :after_filters_time=>1.3e-05, :before_filters_time=>1.3e-05}
|
4107
|
+
~ Not Using Sessions
|
4108
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4109
|
+
~ {:action_time=>0.000193, :after_filters_time=>1.5e-05, :before_filters_time=>1.7e-05}
|
4110
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4111
|
+
~ {:action_time=>0.000722, :after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06}
|
4112
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4113
|
+
~ {:action_time=>0.000734, :after_filters_time=>1.1e-05, :before_filters_time=>1.1e-05}
|
4114
|
+
~ Not Using Sessions
|
4115
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4116
|
+
~ {:action_time=>0.0004, :after_filters_time=>1.8e-05, :before_filters_time=>0.000229}
|
4117
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4118
|
+
~ {:action_time=>0.000661, :after_filters_time=>8.0e-06, :before_filters_time=>8.0e-06}
|
4119
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4120
|
+
~ {:action_time=>0.000708, :after_filters_time=>1.3e-05, :before_filters_time=>1.4e-05}
|
4121
|
+
~ Not Using Sessions
|
4122
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4123
|
+
~ {:action_time=>0.000172, :after_filters_time=>1.4e-05, :before_filters_time=>1.7e-05}
|
4124
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4125
|
+
~ {:action_time=>0.000638, :after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06}
|
4126
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4127
|
+
~ {:action_time=>0.0007, :after_filters_time=>1.0e-05, :before_filters_time=>1.0e-05}
|
4128
|
+
~ Not Using Sessions
|
4129
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4130
|
+
~ {:action_time=>0.000193, :after_filters_time=>1.5e-05, :before_filters_time=>1.7e-05}
|
4131
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4132
|
+
~ {:action_time=>0.000803, :after_filters_time=>8.0e-06, :before_filters_time=>6.0e-06}
|
4133
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4134
|
+
~ {:action_time=>0.000798, :after_filters_time=>1.3e-05, :before_filters_time=>1.1e-05}
|
4135
|
+
~ Not Using Sessions
|
4136
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4137
|
+
~ {:action_time=>0.000177, :after_filters_time=>1.4e-05, :before_filters_time=>1.7e-05}
|
4138
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4139
|
+
~ {:action_time=>0.000664, :after_filters_time=>5.0e-06, :before_filters_time=>6.0e-06}
|
4140
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4141
|
+
~ {:action_time=>0.000738, :after_filters_time=>1.1e-05, :before_filters_time=>1.0e-05}
|
4142
|
+
~ Not Using Sessions
|
4143
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4144
|
+
~ {:action_time=>0.000492, :after_filters_time=>1.4e-05, :before_filters_time=>1.7e-05}
|
4145
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4146
|
+
~ {:action_time=>0.000665, :after_filters_time=>5.0e-06, :before_filters_time=>5.0e-06}
|
4147
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4148
|
+
~ {:action_time=>0.000653, :after_filters_time=>1.0e-05, :before_filters_time=>1.0e-05}
|
4149
|
+
~ Not Using Sessions
|
4150
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4151
|
+
~ {:before_filters_time=>1.8e-05, :action_time=>0.000175, :after_filters_time=>1.4e-05}
|
4152
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4153
|
+
~ {:before_filters_time=>5.0e-06, :action_time=>0.000656, :after_filters_time=>5.0e-06}
|
4154
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4155
|
+
~ {:before_filters_time=>1.0e-05, :action_time=>0.000856, :after_filters_time=>5.9e-05}
|
4156
|
+
~ Not Using Sessions
|
4157
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4158
|
+
~ {:before_filters_time=>2.0e-05, :action_time=>0.000225, :after_filters_time=>1.4e-05}
|
4159
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4160
|
+
~ {:before_filters_time=>7.0e-06, :action_time=>0.000697, :after_filters_time=>6.0e-06}
|
4161
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4162
|
+
~ {:before_filters_time=>1.1e-05, :action_time=>0.000733, :after_filters_time=>1.2e-05}
|
4163
|
+
~ Not Using Sessions
|
4164
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4165
|
+
~ {:action_time=>0.000188, :after_filters_time=>1.4e-05, :before_filters_time=>1.7e-05}
|
4166
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4167
|
+
~ {:action_time=>0.000755, :after_filters_time=>7.0e-06, :before_filters_time=>6.0e-06}
|
4168
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4169
|
+
~ {:action_time=>0.000838, :after_filters_time=>1.3e-05, :before_filters_time=>1.3e-05}
|
4170
|
+
~ Not Using Sessions
|
4171
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4172
|
+
~ {:action_time=>0.00025, :after_filters_time=>1.5e-05, :before_filters_time=>1.8e-05}
|
4173
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4174
|
+
~ {:action_time=>0.002512, :after_filters_time=>8.0e-06, :before_filters_time=>7.0e-06}
|
4175
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4176
|
+
~ {:action_time=>0.00124, :after_filters_time=>1.3e-05, :before_filters_time=>1.2e-05}
|
4177
|
+
~ Not Using Sessions
|
4178
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4179
|
+
~ {:action_time=>0.000378, :after_filters_time=>1.4e-05, :before_filters_time=>1.7e-05}
|
4180
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4181
|
+
~ {:action_time=>0.00066, :after_filters_time=>5.0e-06, :before_filters_time=>5.0e-06}
|
4182
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4183
|
+
~ {:action_time=>0.000707, :after_filters_time=>1.0e-05, :before_filters_time=>1.1e-05}
|
4184
|
+
~ Not Using Sessions
|
4185
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4186
|
+
~ {:before_filters_time=>1.6e-05, :action_time=>0.000172, :after_filters_time=>1.4e-05}
|
4187
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4188
|
+
~ {:before_filters_time=>5.0e-06, :action_time=>0.001273, :after_filters_time=>6.0e-06}
|
4189
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4190
|
+
~ {:before_filters_time=>1.0e-05, :action_time=>0.002851, :after_filters_time=>1.5e-05}
|
4191
|
+
~ Not Using Sessions
|
4192
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4193
|
+
~ {:before_filters_time=>1.8e-05, :action_time=>0.000187, :after_filters_time=>1.5e-05}
|
4194
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4195
|
+
~ {:before_filters_time=>5.0e-06, :action_time=>0.000709, :after_filters_time=>6.0e-06}
|
4196
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4197
|
+
~ {:before_filters_time=>1.1e-05, :action_time=>0.000844, :after_filters_time=>1.2e-05}
|
4198
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4199
|
+
~ {:after_filters_time=>1.4e-05, :action_time=>0.000247, :before_filters_time=>1.6e-05}
|
4200
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4201
|
+
~ {:after_filters_time=>7.0e-06, :action_time=>0.001411, :before_filters_time=>6.0e-06}
|
4202
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4203
|
+
~ {:after_filters_time=>1.3e-05, :action_time=>0.003645, :before_filters_time=>0.001179}
|
4204
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4205
|
+
~ {:after_filters_time=>1.4e-05, :action_time=>0.000249, :before_filters_time=>1.7e-05}
|
4206
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4207
|
+
~ {:after_filters_time=>8.0e-06, :action_time=>0.015025, :before_filters_time=>5.0e-06}
|
4208
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4209
|
+
~ {:after_filters_time=>1.2e-05, :action_time=>0.000894, :before_filters_time=>1.2e-05}
|
4210
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4211
|
+
~ {:after_filters_time=>1.4e-05, :action_time=>0.000251, :before_filters_time=>1.7e-05}
|
4212
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4213
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000703, :before_filters_time=>5.0e-06}
|
4214
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4215
|
+
~ {:after_filters_time=>1.0e-05, :action_time=>0.000734, :before_filters_time=>9.0e-06}
|
4216
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4217
|
+
~ {:after_filters_time=>1.4e-05, :action_time=>0.000264, :before_filters_time=>1.7e-05}
|
4218
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4219
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000818, :before_filters_time=>5.0e-06}
|
4220
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4221
|
+
~ {:after_filters_time=>1.4e-05, :action_time=>0.001031, :before_filters_time=>1.0e-05}
|
4222
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4223
|
+
~ {:after_filters_time=>1.4e-05, :action_time=>0.000258, :before_filters_time=>1.6e-05}
|
4224
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4225
|
+
~ {:after_filters_time=>8.0e-06, :action_time=>0.000797, :before_filters_time=>7.0e-06}
|
4226
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4227
|
+
~ {:after_filters_time=>1.3e-05, :action_time=>0.000862, :before_filters_time=>1.1e-05}
|
4228
|
+
~ Not Using Sessions
|
4229
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4230
|
+
~ {:before_filters_time=>2.1e-05, :action_time=>0.000504, :after_filters_time=>1.5e-05}
|
4231
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4232
|
+
~ {:before_filters_time=>7.0e-06, :action_time=>0.000763, :after_filters_time=>7.0e-06}
|
4233
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4234
|
+
~ {:before_filters_time=>1.4e-05, :action_time=>0.0009, :after_filters_time=>1.2e-05}
|
4235
|
+
~ Not Using Sessions
|
4236
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
4237
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4238
|
+
~ {:before_filters_time=>1.7e-05, :action_time=>0.000179, :after_filters_time=>1.4e-05}
|
4239
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4240
|
+
~ {:before_filters_time=>5.0e-06, :action_time=>0.000652, :after_filters_time=>5.0e-06}
|
4241
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4242
|
+
~ {:before_filters_time=>1.1e-05, :action_time=>0.001104, :after_filters_time=>1.1e-05}
|
4243
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4244
|
+
~ {:after_filters_time=>1.3e-05, :action_time=>0.000228, :before_filters_time=>1.6e-05}
|
4245
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4246
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000678, :before_filters_time=>5.0e-06}
|
4247
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4248
|
+
~ {:after_filters_time=>1.0e-05, :action_time=>0.000754, :before_filters_time=>9.0e-06}
|
4249
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4250
|
+
~ {:after_filters_time=>1.3e-05, :action_time=>0.000233, :before_filters_time=>1.6e-05}
|
4251
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4252
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000713, :before_filters_time=>6.0e-06}
|
4253
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4254
|
+
~ {:after_filters_time=>1.0e-05, :action_time=>0.000776, :before_filters_time=>3.5e-05}
|
4255
|
+
~ Not Using Sessions
|
4256
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
4257
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4258
|
+
~ {:before_filters_time=>1.7e-05, :action_time=>0.000187, :after_filters_time=>1.5e-05}
|
4259
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4260
|
+
~ {:before_filters_time=>7.0e-06, :action_time=>0.000687, :after_filters_time=>6.0e-06}
|
4261
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4262
|
+
~ {:before_filters_time=>1.0e-05, :action_time=>0.001419, :after_filters_time=>1.1e-05}
|
4263
|
+
~ Not Using Sessions
|
4264
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
4265
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4266
|
+
~ {:before_filters_time=>1.6e-05, :action_time=>0.000175, :after_filters_time=>1.4e-05}
|
4267
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4268
|
+
~ {:before_filters_time=>5.0e-06, :action_time=>0.00065, :after_filters_time=>6.0e-06}
|
4269
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4270
|
+
~ {:before_filters_time=>3.9e-05, :action_time=>0.000735, :after_filters_time=>1.0e-05}
|
4271
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4272
|
+
~ {:after_filters_time=>1.4e-05, :action_time=>0.000239, :before_filters_time=>1.5e-05}
|
4273
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4274
|
+
~ {:after_filters_time=>1.0e-05, :action_time=>0.001783, :before_filters_time=>1.4e-05}
|
4275
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4276
|
+
~ {:after_filters_time=>1.5e-05, :action_time=>0.001137, :before_filters_time=>1.5e-05}
|
4277
|
+
~ Not Using Sessions
|
4278
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
4279
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4280
|
+
~ {:before_filters_time=>1.7e-05, :action_time=>0.000192, :after_filters_time=>1.5e-05}
|
4281
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4282
|
+
~ {:before_filters_time=>5.0e-06, :action_time=>0.000737, :after_filters_time=>7.0e-06}
|
4283
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4284
|
+
~ {:before_filters_time=>1.4e-05, :action_time=>0.000893, :after_filters_time=>1.2e-05}
|
4285
|
+
~ Not Using Sessions
|
4286
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
4287
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4288
|
+
~ {:before_filters_time=>1.8e-05, :action_time=>0.000386, :after_filters_time=>1.5e-05}
|
4289
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4290
|
+
~ {:before_filters_time=>5.0e-06, :action_time=>0.000656, :after_filters_time=>6.0e-06}
|
4291
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4292
|
+
~ {:before_filters_time=>1.0e-05, :action_time=>0.000699, :after_filters_time=>1.0e-05}
|
4293
|
+
~ Not Using Sessions
|
4294
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
4295
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4296
|
+
~ {:before_filters_time=>1.8e-05, :action_time=>0.000177, :after_filters_time=>1.5e-05}
|
4297
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4298
|
+
~ {:before_filters_time=>5.0e-06, :action_time=>0.000693, :after_filters_time=>5.0e-06}
|
4299
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4300
|
+
~ {:before_filters_time=>1.1e-05, :action_time=>0.000668, :after_filters_time=>1.0e-05}
|
4301
|
+
~ Not Using Sessions
|
4302
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
4303
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4304
|
+
~ {:before_filters_time=>1.7e-05, :action_time=>0.000177, :after_filters_time=>1.5e-05}
|
4305
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4306
|
+
~ {:before_filters_time=>5.0e-06, :action_time=>0.000677, :after_filters_time=>6.0e-06}
|
4307
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4308
|
+
~ {:before_filters_time=>1.0e-05, :action_time=>0.000698, :after_filters_time=>1.0e-05}
|
4309
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4310
|
+
~ {:after_filters_time=>1.4e-05, :action_time=>0.000248, :before_filters_time=>1.6e-05}
|
4311
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4312
|
+
~ {:after_filters_time=>7.0e-06, :action_time=>0.000835, :before_filters_time=>7.0e-06}
|
4313
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4314
|
+
~ {:after_filters_time=>1.3e-05, :action_time=>0.000887, :before_filters_time=>1.1e-05}
|
4315
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4316
|
+
~ {:after_filters_time=>1.4e-05, :action_time=>0.000229, :before_filters_time=>1.6e-05}
|
4317
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4318
|
+
~ {:after_filters_time=>1.0e-05, :action_time=>0.001326, :before_filters_time=>1.2e-05}
|
4319
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4320
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.001216, :before_filters_time=>1.5e-05}
|
4321
|
+
~ Not Using Sessions
|
4322
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
4323
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4324
|
+
~ {:before_filters_time=>1.8e-05, :action_time=>0.000193, :after_filters_time=>1.5e-05}
|
4325
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4326
|
+
~ {:before_filters_time=>7.0e-06, :action_time=>0.000723, :after_filters_time=>6.0e-06}
|
4327
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4328
|
+
~ {:before_filters_time=>1.0e-05, :action_time=>0.00071, :after_filters_time=>1.0e-05}
|
4329
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4330
|
+
~ {:after_filters_time=>1.3e-05, :action_time=>0.00023, :before_filters_time=>1.6e-05}
|
4331
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4332
|
+
~ {:after_filters_time=>1.0e-05, :action_time=>0.001395, :before_filters_time=>1.4e-05}
|
4333
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4334
|
+
~ {:after_filters_time=>1.2e-05, :action_time=>0.00101, :before_filters_time=>1.1e-05}
|
4335
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
4336
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4337
|
+
~ {:after_filters_time=>1.5e-05, :action_time=>0.000912, :before_filters_time=>1.7e-05}
|
4338
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4339
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000758, :before_filters_time=>5.0e-06}
|
4340
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4341
|
+
~ {:after_filters_time=>1.0e-05, :action_time=>0.000766, :before_filters_time=>9.0e-06}
|
4342
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4343
|
+
~ {:after_filters_time=>1.4e-05, :action_time=>0.000239, :before_filters_time=>1.6e-05}
|
4344
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4345
|
+
~ {:after_filters_time=>7.0e-06, :action_time=>0.001216, :before_filters_time=>7.0e-06}
|
4346
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4347
|
+
~ {:after_filters_time=>1.8e-05, :action_time=>0.00373, :before_filters_time=>9.0e-06}
|
4348
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4349
|
+
~ {:after_filters_time=>1.4e-05, :action_time=>0.00024, :before_filters_time=>1.7e-05}
|
4350
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4351
|
+
~ {:after_filters_time=>1.0e-05, :action_time=>0.001549, :before_filters_time=>1.4e-05}
|
4352
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4353
|
+
~ {:after_filters_time=>1.7e-05, :action_time=>0.001116, :before_filters_time=>1.4e-05}
|
4354
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4355
|
+
~ {:after_filters_time=>1.4e-05, :action_time=>0.000232, :before_filters_time=>1.6e-05}
|
4356
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4357
|
+
~ {:after_filters_time=>1.1e-05, :action_time=>0.001376, :before_filters_time=>1.4e-05}
|
4358
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4359
|
+
~ {:after_filters_time=>1.7e-05, :action_time=>0.001114, :before_filters_time=>1.5e-05}
|
4360
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4361
|
+
~ {:after_filters_time=>1.5e-05, :action_time=>0.000237, :before_filters_time=>1.5e-05}
|
4362
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4363
|
+
~ {:after_filters_time=>7.0e-06, :action_time=>0.000712, :before_filters_time=>6.0e-06}
|
4364
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4365
|
+
~ {:after_filters_time=>1.1e-05, :action_time=>0.000727, :before_filters_time=>1.1e-05}
|
4366
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4367
|
+
~ {:after_filters_time=>1.4e-05, :action_time=>0.000315, :before_filters_time=>1.6e-05}
|
4368
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4369
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000706, :before_filters_time=>5.0e-06}
|
4370
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4371
|
+
~ {:after_filters_time=>1.1e-05, :action_time=>0.000764, :before_filters_time=>1.0e-05}
|
4372
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4373
|
+
~ {:after_filters_time=>1.4e-05, :action_time=>0.000231, :before_filters_time=>1.6e-05}
|
4374
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4375
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000777, :before_filters_time=>5.0e-06}
|
4376
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4377
|
+
~ {:after_filters_time=>1.0e-05, :action_time=>0.000715, :before_filters_time=>9.0e-06}
|
4378
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4379
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.000597, :before_filters_time=>1.6e-05}
|
4380
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4381
|
+
~ {:after_filters_time=>7.0e-06, :action_time=>0.00089, :before_filters_time=>7.0e-06}
|
4382
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4383
|
+
~ {:after_filters_time=>1.3e-05, :action_time=>0.000914, :before_filters_time=>1.1e-05}
|
4384
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4385
|
+
~ {:after_filters_time=>1.5e-05, :action_time=>0.000244, :before_filters_time=>1.6e-05}
|
4386
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4387
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000909, :before_filters_time=>5.0e-06}
|
4388
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4389
|
+
~ {:after_filters_time=>1.1e-05, :action_time=>0.000757, :before_filters_time=>9.0e-06}
|
4390
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4391
|
+
~ {:after_filters_time=>1.5e-05, :action_time=>0.00023, :before_filters_time=>1.5e-05}
|
4392
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4393
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.0007, :before_filters_time=>5.0e-06}
|
4394
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4395
|
+
~ {:after_filters_time=>1.0e-05, :action_time=>0.000709, :before_filters_time=>9.0e-06}
|
4396
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4397
|
+
~ {:after_filters_time=>1.4e-05, :action_time=>0.000233, :before_filters_time=>1.6e-05}
|
4398
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4399
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000738, :before_filters_time=>5.0e-06}
|
4400
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4401
|
+
~ {:after_filters_time=>1.0e-05, :action_time=>0.00074, :before_filters_time=>1.0e-05}
|
4402
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4403
|
+
~ {:after_filters_time=>1.5e-05, :action_time=>0.000232, :before_filters_time=>1.5e-05}
|
4404
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4405
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000738, :before_filters_time=>5.0e-06}
|
4406
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4407
|
+
~ {:after_filters_time=>1.0e-05, :action_time=>0.000743, :before_filters_time=>1.0e-05}
|
4408
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4409
|
+
~ {:after_filters_time=>1.5e-05, :action_time=>0.000238, :before_filters_time=>1.5e-05}
|
4410
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4411
|
+
~ {:after_filters_time=>8.0e-06, :action_time=>0.00121, :before_filters_time=>4.0e-06}
|
4412
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4413
|
+
~ {:after_filters_time=>1.1e-05, :action_time=>0.000746, :before_filters_time=>1.0e-05}
|
4414
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4415
|
+
~ {:after_filters_time=>1.5e-05, :action_time=>0.000238, :before_filters_time=>1.5e-05}
|
4416
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4417
|
+
~ {:after_filters_time=>7.0e-06, :action_time=>0.000754, :before_filters_time=>5.0e-06}
|
4418
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4419
|
+
~ {:after_filters_time=>1.1e-05, :action_time=>0.000777, :before_filters_time=>1.1e-05}
|
4420
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4421
|
+
~ {:after_filters_time=>1.5e-05, :action_time=>0.000234, :before_filters_time=>1.5e-05}
|
4422
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4423
|
+
~ {:after_filters_time=>9.0e-06, :action_time=>0.000924, :before_filters_time=>6.0e-06}
|
4424
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4425
|
+
~ {:after_filters_time=>1.4e-05, :action_time=>0.001115, :before_filters_time=>1.3e-05}
|
4426
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4427
|
+
~ {:after_filters_time=>1.5e-05, :action_time=>0.000234, :before_filters_time=>1.6e-05}
|
4428
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4429
|
+
~ {:after_filters_time=>7.0e-06, :action_time=>0.000705, :before_filters_time=>4.0e-06}
|
4430
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4431
|
+
~ {:after_filters_time=>1.1e-05, :action_time=>0.000727, :before_filters_time=>1.0e-05}
|
4432
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4433
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.000247, :before_filters_time=>1.7e-05}
|
4434
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4435
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000715, :before_filters_time=>4.0e-06}
|
4436
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4437
|
+
~ {:after_filters_time=>1.1e-05, :action_time=>0.000766, :before_filters_time=>1.0e-05}
|
4438
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4439
|
+
~ {:after_filters_time=>1.5e-05, :action_time=>0.000252, :before_filters_time=>1.5e-05}
|
4440
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4441
|
+
~ {:after_filters_time=>8.0e-06, :action_time=>0.00084, :before_filters_time=>7.0e-06}
|
4442
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4443
|
+
~ {:after_filters_time=>1.4e-05, :action_time=>0.000859, :before_filters_time=>1.2e-05}
|
4444
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4445
|
+
~ {:after_filters_time=>1.5e-05, :action_time=>0.000274, :before_filters_time=>1.6e-05}
|
4446
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4447
|
+
~ {:after_filters_time=>8.0e-06, :action_time=>0.000888, :before_filters_time=>5.0e-06}
|
4448
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4449
|
+
~ {:after_filters_time=>1.3e-05, :action_time=>0.001064, :before_filters_time=>1.0e-05}
|
4450
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
4451
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4452
|
+
~ {:after_filters_time=>1.5e-05, :action_time=>0.000235, :before_filters_time=>1.5e-05}
|
4453
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4454
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000695, :before_filters_time=>5.0e-06}
|
4455
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4456
|
+
~ {:after_filters_time=>1.0e-05, :action_time=>0.00073, :before_filters_time=>1.1e-05}
|
4457
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4458
|
+
~ {:after_filters_time=>1.4e-05, :action_time=>0.000296, :before_filters_time=>1.6e-05}
|
4459
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4460
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000676, :before_filters_time=>5.0e-06}
|
4461
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4462
|
+
~ {:after_filters_time=>1.1e-05, :action_time=>0.000748, :before_filters_time=>1.0e-05}
|
4463
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
4464
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4465
|
+
~ {:after_filters_time=>1.5e-05, :action_time=>0.000228, :before_filters_time=>1.5e-05}
|
4466
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4467
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000752, :before_filters_time=>1.1e-05}
|
4468
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4469
|
+
~ {:after_filters_time=>1.5e-05, :action_time=>0.000741, :before_filters_time=>9.0e-06}
|
4470
|
+
~ Starting Merb server listening at 0.0.0.0:4000
|
4471
|
+
~ Params: {"action"=>"string", "controller"=>"base"}
|
4472
|
+
~ {:after_filters_time=>1.4e-05, :action_time=>0.000229, :before_filters_time=>1.5e-05}
|
4473
|
+
~ Params: {"action"=>"template", "controller"=>"base"}
|
4474
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.0007, :before_filters_time=>5.0e-06}
|
4475
|
+
~ Params: {"action"=>"template", "controller"=>"custom"}
|
4476
|
+
~ {:after_filters_time=>1.0e-05, :action_time=>0.000725, :before_filters_time=>1.0e-05}
|