merb-helpers 0.9.8
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +20 -0
- data/README +180 -0
- data/Rakefile +77 -0
- data/TODO +5 -0
- data/lib/merb-helpers.rb +38 -0
- data/lib/merb-helpers/core_ext.rb +57 -0
- data/lib/merb-helpers/core_ext/numeric.rb +388 -0
- data/lib/merb-helpers/date_time_formatting.rb +127 -0
- data/lib/merb-helpers/date_time_helpers.rb +190 -0
- data/lib/merb-helpers/form/builder.rb +410 -0
- data/lib/merb-helpers/form/helpers.rb +448 -0
- data/lib/merb-helpers/form_helpers.rb +24 -0
- data/lib/merb-helpers/tag_helpers.rb +61 -0
- data/lib/merb-helpers/text_helpers.rb +61 -0
- data/lib/merb-helpers/time_dsl.rb +59 -0
- data/spec/core_ext_spec.rb +19 -0
- data/spec/fixture/app/controllers/application.rb +4 -0
- data/spec/fixture/app/controllers/bound_check_box.rb +2 -0
- data/spec/fixture/app/controllers/bound_file_field.rb +2 -0
- data/spec/fixture/app/controllers/bound_hidden_field.rb +2 -0
- data/spec/fixture/app/controllers/bound_option_tag.rb +2 -0
- data/spec/fixture/app/controllers/bound_password_field.rb +2 -0
- data/spec/fixture/app/controllers/bound_radio_button.rb +2 -0
- data/spec/fixture/app/controllers/bound_radio_group.rb +2 -0
- data/spec/fixture/app/controllers/bound_select.rb +2 -0
- data/spec/fixture/app/controllers/bound_text_area.rb +2 -0
- data/spec/fixture/app/controllers/bound_text_field.rb +2 -0
- data/spec/fixture/app/controllers/button.rb +2 -0
- data/spec/fixture/app/controllers/check_box.rb +2 -0
- data/spec/fixture/app/controllers/custom_builder.rb +2 -0
- data/spec/fixture/app/controllers/delete_button.rb +2 -0
- data/spec/fixture/app/controllers/exceptions.rb +25 -0
- data/spec/fixture/app/controllers/field_set.rb +2 -0
- data/spec/fixture/app/controllers/fields_for.rb +3 -0
- data/spec/fixture/app/controllers/file_field.rb +2 -0
- data/spec/fixture/app/controllers/foo.rb +23 -0
- data/spec/fixture/app/controllers/form.rb +2 -0
- data/spec/fixture/app/controllers/form_for.rb +2 -0
- data/spec/fixture/app/controllers/hidden_field.rb +2 -0
- data/spec/fixture/app/controllers/label.rb +3 -0
- data/spec/fixture/app/controllers/numeric_ext.rb +3 -0
- data/spec/fixture/app/controllers/option_tag.rb +2 -0
- data/spec/fixture/app/controllers/password_field.rb +2 -0
- data/spec/fixture/app/controllers/radio_button.rb +2 -0
- data/spec/fixture/app/controllers/radio_group.rb +2 -0
- data/spec/fixture/app/controllers/select.rb +2 -0
- data/spec/fixture/app/controllers/specs_controller.rb +11 -0
- data/spec/fixture/app/controllers/submit.rb +2 -0
- data/spec/fixture/app/controllers/tag_helper.rb +21 -0
- data/spec/fixture/app/controllers/text_area.rb +2 -0
- data/spec/fixture/app/controllers/text_field.rb +3 -0
- data/spec/fixture/app/helpers/global_helpers.rb +8 -0
- data/spec/fixture/app/models/fake_dm_model.rb +25 -0
- data/spec/fixture/app/models/first_generic_fake_model.rb +57 -0
- data/spec/fixture/app/models/second_generic_fake_model.rb +18 -0
- data/spec/fixture/app/models/third_generic_fake_model.rb +3 -0
- data/spec/fixture/app/views/bound_check_box_specs/basic.html.erb +4 -0
- data/spec/fixture/app/views/bound_check_box_specs/checked.html.erb +4 -0
- data/spec/fixture/app/views/bound_check_box_specs/errors.html.erb +4 -0
- data/spec/fixture/app/views/bound_check_box_specs/label.html.erb +3 -0
- data/spec/fixture/app/views/bound_check_box_specs/on_and_off.html.erb +3 -0
- data/spec/fixture/app/views/bound_check_box_specs/raise_value_error.html.erb +3 -0
- data/spec/fixture/app/views/bound_file_field_specs/additional_attributes.html.erb +3 -0
- data/spec/fixture/app/views/bound_file_field_specs/takes_string.html.erb +3 -0
- data/spec/fixture/app/views/bound_file_field_specs/with_label.html.erb +3 -0
- data/spec/fixture/app/views/bound_hidden_field_specs/basic.html.erb +3 -0
- data/spec/fixture/app/views/bound_hidden_field_specs/errors.html.erb +3 -0
- data/spec/fixture/app/views/bound_hidden_field_specs/hidden_error.html.erb +3 -0
- data/spec/fixture/app/views/bound_hidden_field_specs/label.html.erb +3 -0
- data/spec/fixture/app/views/bound_option_tag_specs/grouped.html.erb +3 -0
- data/spec/fixture/app/views/bound_option_tag_specs/nested.html.erb +3 -0
- data/spec/fixture/app/views/bound_option_tag_specs/text_and_value.html.erb +4 -0
- data/spec/fixture/app/views/bound_password_field_specs/attributes.html.erb +3 -0
- data/spec/fixture/app/views/bound_password_field_specs/basic.html.erb +3 -0
- data/spec/fixture/app/views/bound_password_field_specs/label.html.erb +3 -0
- data/spec/fixture/app/views/bound_radio_button_specs/basic.html.erb +3 -0
- data/spec/fixture/app/views/bound_radio_group_specs/basic.html.erb +3 -0
- data/spec/fixture/app/views/bound_radio_group_specs/hashes.html.erb +3 -0
- data/spec/fixture/app/views/bound_radio_group_specs/mixed.html.erb +4 -0
- data/spec/fixture/app/views/bound_radio_group_specs/override_id.html.erb +3 -0
- data/spec/fixture/app/views/bound_select_specs/basic.html.erb +3 -0
- data/spec/fixture/app/views/bound_select_specs/blank.html.erb +3 -0
- data/spec/fixture/app/views/bound_select_specs/multiple.html.erb +3 -0
- data/spec/fixture/app/views/bound_select_specs/prompt.html.erb +3 -0
- data/spec/fixture/app/views/bound_select_specs/with_options.html.erb +3 -0
- data/spec/fixture/app/views/bound_select_specs/with_options_with_blank.html.erb +3 -0
- data/spec/fixture/app/views/bound_text_area_specs/basic.html.erb +3 -0
- data/spec/fixture/app/views/bound_text_field_specs/basic.html.erb +3 -0
- data/spec/fixture/app/views/button_specs/button_with_label.html.erb +1 -0
- data/spec/fixture/app/views/button_specs/button_with_values.html.erb +1 -0
- data/spec/fixture/app/views/button_specs/disabled_button.html.erb +1 -0
- data/spec/fixture/app/views/check_box_specs/basic.html.erb +1 -0
- data/spec/fixture/app/views/check_box_specs/boolean.html.erb +1 -0
- data/spec/fixture/app/views/check_box_specs/disabled.html.erb +1 -0
- data/spec/fixture/app/views/check_box_specs/label.html.erb +1 -0
- data/spec/fixture/app/views/check_box_specs/on_off_is_boolean.html.erb +1 -0
- data/spec/fixture/app/views/check_box_specs/raise_unless_both_on_and_off.html.erb +2 -0
- data/spec/fixture/app/views/check_box_specs/raises_error_if_not_boolean.html.erb +1 -0
- data/spec/fixture/app/views/check_box_specs/raises_error_if_on_off_and_boolean_false.html.erb +1 -0
- data/spec/fixture/app/views/check_box_specs/simple.html.erb +1 -0
- data/spec/fixture/app/views/check_box_specs/to_string.html.erb +8 -0
- data/spec/fixture/app/views/check_box_specs/unchecked.html.erb +2 -0
- data/spec/fixture/app/views/custom_builder_specs/everything.html.erb +10 -0
- data/spec/fixture/app/views/delete_button_specs/delete_with_explicit_url.html.erb +1 -0
- data/spec/fixture/app/views/delete_button_specs/delete_with_extra_params.html.erb +1 -0
- data/spec/fixture/app/views/delete_button_specs/delete_with_label.html.erb +1 -0
- data/spec/fixture/app/views/delete_button_specs/simple_delete.html.erb +1 -0
- data/spec/fixture/app/views/exeptions/client_error.html.erb +37 -0
- data/spec/fixture/app/views/exeptions/internal_server_error.html.erb +216 -0
- data/spec/fixture/app/views/exeptions/not_acceptable.html.erb +38 -0
- data/spec/fixture/app/views/exeptions/not_found.html.erb +40 -0
- data/spec/fixture/app/views/fields_for_specs/basic.html.erb +3 -0
- data/spec/fixture/app/views/fields_for_specs/midstream.html.erb +7 -0
- data/spec/fixture/app/views/fields_for_specs/nil.html.erb +3 -0
- data/spec/fixture/app/views/fieldset_specs/legend.html.erb +3 -0
- data/spec/fixture/app/views/file_field_specs/disabled.html.erb +1 -0
- data/spec/fixture/app/views/file_field_specs/makes_multipart.html.erb +3 -0
- data/spec/fixture/app/views/file_field_specs/with_label.html.erb +1 -0
- data/spec/fixture/app/views/file_field_specs/with_values.html.erb +1 -0
- data/spec/fixture/app/views/foo/bar.html.erb +0 -0
- data/spec/fixture/app/views/form_for_specs/basic.html.erb +3 -0
- data/spec/fixture/app/views/form_specs/create_a_form.html.erb +3 -0
- data/spec/fixture/app/views/form_specs/create_a_multipart_form.html.erb +3 -0
- data/spec/fixture/app/views/form_specs/fake_delete_if_set.html.erb +3 -0
- data/spec/fixture/app/views/form_specs/fake_put_if_set.html.erb +3 -0
- data/spec/fixture/app/views/form_specs/get_if_set.html.erb +3 -0
- data/spec/fixture/app/views/form_specs/post_by_default.html.erb +3 -0
- data/spec/fixture/app/views/form_specs/resourceful_form.html.erb +3 -0
- data/spec/fixture/app/views/hidden_field_specs/basic.html.erb +1 -0
- data/spec/fixture/app/views/hidden_field_specs/disabled.html.erb +1 -0
- data/spec/fixture/app/views/hidden_field_specs/label.html.erb +1 -0
- data/spec/fixture/app/views/label_specs/basic.html.erb +1 -0
- data/spec/fixture/app/views/layout/application.html.erb +11 -0
- data/spec/fixture/app/views/numeric_ext_specs/minutes_to_hours.html.erb +1 -0
- data/spec/fixture/app/views/numeric_ext_specs/to_concurrency_default.html.erb +1 -0
- data/spec/fixture/app/views/numeric_ext_specs/two_digits.html.erb +1 -0
- data/spec/fixture/app/views/option_tag_specs/array.html.erb +1 -0
- data/spec/fixture/app/views/option_tag_specs/clean.html.erb +1 -0
- data/spec/fixture/app/views/option_tag_specs/collection.html.erb +1 -0
- data/spec/fixture/app/views/option_tag_specs/multiple_selects.html.erb +1 -0
- data/spec/fixture/app/views/option_tag_specs/no_extra_attributes.html.erb +1 -0
- data/spec/fixture/app/views/option_tag_specs/optgroups.html.erb +1 -0
- data/spec/fixture/app/views/option_tag_specs/selected.html.erb +1 -0
- data/spec/fixture/app/views/option_tag_specs/with_blank.html.erb +1 -0
- data/spec/fixture/app/views/option_tag_specs/with_prompt.html.erb +1 -0
- data/spec/fixture/app/views/password_field_specs/basic.html.erb +1 -0
- data/spec/fixture/app/views/password_field_specs/disabled.html.erb +1 -0
- data/spec/fixture/app/views/radio_button_specs/basic.html.erb +1 -0
- data/spec/fixture/app/views/radio_button_specs/disabled.html.erb +1 -0
- data/spec/fixture/app/views/radio_button_specs/label.html.erb +1 -0
- data/spec/fixture/app/views/radio_group_specs/attributes.html.erb +1 -0
- data/spec/fixture/app/views/radio_group_specs/basic.html.erb +1 -0
- data/spec/fixture/app/views/radio_group_specs/hash.html.erb +1 -0
- data/spec/fixture/app/views/radio_group_specs/specific_attributes.html.erb +1 -0
- data/spec/fixture/app/views/select_specs/blank.html.erb +1 -0
- data/spec/fixture/app/views/select_specs/multiple.html.erb +1 -0
- data/spec/fixture/app/views/submit_specs/disabled_submit.html.erb +1 -0
- data/spec/fixture/app/views/submit_specs/submit_with_label.html.erb +1 -0
- data/spec/fixture/app/views/submit_specs/submit_with_values.html.erb +1 -0
- data/spec/fixture/app/views/tag_helper/nested_tags.html.erb +5 -0
- data/spec/fixture/app/views/tag_helper/tag_with_attributes.html.erb +1 -0
- data/spec/fixture/app/views/tag_helper/tag_with_content.html.erb +1 -0
- data/spec/fixture/app/views/tag_helper/tag_with_content_in_the_block.html.erb +3 -0
- data/spec/fixture/app/views/text_area_specs/basic.html.erb +1 -0
- data/spec/fixture/app/views/text_area_specs/disabled.html.erb +1 -0
- data/spec/fixture/app/views/text_area_specs/label.html.erb +1 -0
- data/spec/fixture/app/views/text_area_specs/nil.html.erb +1 -0
- data/spec/fixture/app/views/text_field_specs/basic.html.erb +1 -0
- data/spec/fixture/app/views/text_field_specs/class.html.erb +1 -0
- data/spec/fixture/app/views/text_field_specs/disabled.html.erb +1 -0
- data/spec/fixture/app/views/text_field_specs/label.html.erb +1 -0
- data/spec/fixture/config/environments/development.rb +6 -0
- data/spec/fixture/config/environments/production.rb +5 -0
- data/spec/fixture/config/environments/test.rb +6 -0
- data/spec/fixture/config/init.rb +46 -0
- data/spec/fixture/config/rack.rb +11 -0
- data/spec/fixture/config/router.rb +36 -0
- data/spec/fixture/log/merb.main.pid +1 -0
- data/spec/fixture/log/merb_test.log +624 -0
- data/spec/fixture/public/images/merb.jpg +0 -0
- data/spec/fixture/public/merb.fcgi +4 -0
- data/spec/fixture/public/stylesheets/master.css +119 -0
- data/spec/merb_helpers_config_spec.rb +82 -0
- data/spec/merb_helpers_date_time_spec.rb +257 -0
- data/spec/merb_helpers_form_spec.rb +1266 -0
- data/spec/merb_helpers_tag_helper_spec.rb +46 -0
- data/spec/merb_helpers_text_spec.rb +67 -0
- data/spec/numeric_extlib_spec.rb +135 -0
- data/spec/ordinalize_spec.rb +51 -0
- data/spec/spec_helper.rb +149 -0
- data/spec/time_dsl_spec.rb +43 -0
- metadata +303 -0
@@ -0,0 +1,38 @@
|
|
1
|
+
<div id="container">
|
2
|
+
<div id="header-container">
|
3
|
+
<img src="/images/merb.jpg">
|
4
|
+
<!-- <h1>Mongrel + Erb</h1> -->
|
5
|
+
<h2>pocket rocket web framework</h2>
|
6
|
+
<hr />
|
7
|
+
</div>
|
8
|
+
|
9
|
+
<div id="left-container">
|
10
|
+
<h3>Exception:</h3>
|
11
|
+
<p><%= request.exceptions.first.message %></p>
|
12
|
+
</div>
|
13
|
+
|
14
|
+
<div id="main-container">
|
15
|
+
<h3>Why am I seeing this page?</h3>
|
16
|
+
<p>Merb couldn't find an appropriate content_type to return,
|
17
|
+
based on what you said was available via provides() and
|
18
|
+
what the client requested. For more information, visit
|
19
|
+
http://merbivore.com/fixing_406_issues
|
20
|
+
</p>
|
21
|
+
|
22
|
+
<h3>Where can I find help?</h3>
|
23
|
+
<p>If you have any questions or if you can't figure something out, please take a
|
24
|
+
look at our <a href="http://merb.devjavu.com/"> project development page</a> or,
|
25
|
+
feel free to come chat at irc.freenode.net, channel #merb.</p>
|
26
|
+
|
27
|
+
<h3>How do I edit this page?</h3>
|
28
|
+
<p>You can change what people see when this happens by editing <tt>app/views/exceptions/not_found.html.erb</tt>.</p>
|
29
|
+
|
30
|
+
</div>
|
31
|
+
|
32
|
+
<div id="footer-container">
|
33
|
+
<hr />
|
34
|
+
<div class="left"></div>
|
35
|
+
<div class="right">© 2008 the merb dev team</div>
|
36
|
+
<p> </p>
|
37
|
+
</div>
|
38
|
+
</div>
|
@@ -0,0 +1,40 @@
|
|
1
|
+
<div id="container">
|
2
|
+
<div id="header-container">
|
3
|
+
<img src="/images/merb.jpg">
|
4
|
+
<!-- <h1>Mongrel + Erb</h1> -->
|
5
|
+
<h2>pocket rocket web framework</h2>
|
6
|
+
<hr />
|
7
|
+
</div>
|
8
|
+
|
9
|
+
<div id="left-container">
|
10
|
+
<h3>Exception:</h3>
|
11
|
+
<p><%= request.exceptions.first.message %></p>
|
12
|
+
</div>
|
13
|
+
|
14
|
+
<div id="main-container">
|
15
|
+
<h3>Welcome to Merb!</h3>
|
16
|
+
<p>Merb is a light-weight MVC framework written in Ruby. We hope you enjoy it.</p>
|
17
|
+
|
18
|
+
<h3>Where can I find help?</h3>
|
19
|
+
<p>If you have any questions or if you can't figure something out, please take a
|
20
|
+
look at our <a href="http://merb.devjavu.com/"> project development page</a> or,
|
21
|
+
feel free to come chat at irc.freenode.net, channel #merb.</p>
|
22
|
+
|
23
|
+
<h3>How do I edit this page?</h3>
|
24
|
+
<p>You're seeing this page because you need to edit the following files:
|
25
|
+
<ul>
|
26
|
+
<li>config/merb.yml <strong><em>(optional)</em></strong></li>
|
27
|
+
<li>config/router.rb <strong><em>(recommended)</em></strong></li>
|
28
|
+
<li>app/views/exceptions/not_found.html.erb <strong><em>(recommended)</em></strong></li>
|
29
|
+
<li>app/views/layout/application.html.erb <strong><em>(change this layout)</em></strong></li>
|
30
|
+
</ul>
|
31
|
+
</p>
|
32
|
+
</div>
|
33
|
+
|
34
|
+
<div id="footer-container">
|
35
|
+
<hr />
|
36
|
+
<div class="left"></div>
|
37
|
+
<div class="right">© 2008 the merb dev team</div>
|
38
|
+
<p> </p>
|
39
|
+
</div>
|
40
|
+
</div>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= file_field :disabled => true %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= file_field :label => 'LABEL' %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= file_field :name => 'foo', :value => 'bar' %>
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= hidden_field(:name => "foo", :value => "bar") %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= hidden_field(:disabled => true) %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= hidden_field(:label => "LABEL") %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= label "First Name", :id => "user_first_name" %>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us" lang="en-us">
|
3
|
+
<head>
|
4
|
+
<title>Fresh Merb App</title>
|
5
|
+
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
6
|
+
<link rel="stylesheet" href="/stylesheets/master.css" type="text/css" media="screen" charset="utf-8">
|
7
|
+
</head>
|
8
|
+
<body>
|
9
|
+
<%= catch_content :for_layout %>
|
10
|
+
</body>
|
11
|
+
</html>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= 315.minutes_to_hours %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= 1234567890.50.to_currency %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= 7.two_digits %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= select(:collection => %w(one two three)) %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= select(:collection => [['orange','Orange'], ['banana','Banana']], :selected => 'banana') %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= select :collection => @collection %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= select( :collection => [['minutes','Time'],['dollars','Money'],['grapes','Fruit']], :selected => ['minutes', 'dollars'] ) %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= select(:collection => [["rabbit", "Rabbit"]], :id => "my_id", :name => "my_name", :class => "classy") %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= select :collection => { "Fruit" => [['orange','Orange'],['banana','Banana']], "Vegetables" => [['corn','Corn']]}, :selected => 'banana' %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= select :collection => [['rabbit','Rabbit'],['chicken','Chicken']], :selected => 'rabbit' %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= select :collection => @collection, :include_blank => true %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= select :collection => [["foo", "Foo"]], :prompt => 'Choose' %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= password_field(:name => "foo", :value => "bar", :label => "LABEL") %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= password_field(:disabled => true) %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= radio_button(:name => "foo", :value => "bar", :id => "baz") %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= radio_button(:disabled => true) %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= radio_button(:name => "foo", :value => "bar", :label => "LABEL") %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= radio_group(["foowee", "baree"], :class => "CLASS") %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= radio_group(["foowee", "baree"]) %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= radio_group([{:value => 5, :label => "Five"}, {:value => 'bar', :label => 'Bar', :id => 'bar_id'}]) %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= radio_group(["foowee", {:value => "baree", :class => 'BAREE'}], :class => "CLASS") %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= select(:include_blank => true) %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= select( :name => 'foo', :multiple => true ) %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= submit "Done", :disabled => true %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= submit "Done", :label => "LABEL" %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= submit "Done", :name => 'foo' %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= tag :div, :class => "psy", :id => "bands", :invalid_attr => "at least in html" %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= tag :div, @content %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= text_area("foo", :name => "foo") %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= text_area("Woop Woop Woop!", :disabled => true) %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= text_area( "CONTENT", :name => "foo", :value => "bar", :label => "LABEL") %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= text_area(nil, :name => "foo") =%>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= text_field(:name => "foo", :value => "bar", :label => "LABEL") %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= text_field(:class => "awesome foobar") -%>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= text_field(:disabled => true) %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= text_field(:name => "foo", :value => "bar", :style => "width: 100px", :label => {:class => "cool", :title => "LABEL"}) %>
|
@@ -0,0 +1,46 @@
|
|
1
|
+
# Make the app's "gems" directory a place where gems are loaded from
|
2
|
+
Gem.clear_paths
|
3
|
+
Gem.path.unshift(Merb.root / "gems")
|
4
|
+
|
5
|
+
# Make the app's "lib" directory a place where ruby files get "require"d from
|
6
|
+
$LOAD_PATH.unshift(Merb.root / "lib")
|
7
|
+
|
8
|
+
Merb::Config.use { |c|
|
9
|
+
c[:session_store] = 'cookie'
|
10
|
+
c[:session_secret_key] = "2c24532b38b8c46d8acf1b5ed71bdd5426dadd9b"
|
11
|
+
}
|
12
|
+
|
13
|
+
### Merb doesn't come with database support by default. You need
|
14
|
+
### an ORM plugin. Install one, and uncomment one of the following lines,
|
15
|
+
### if you need a database.
|
16
|
+
|
17
|
+
### Uncomment for DataMapper ORM
|
18
|
+
# use_orm :datamapper
|
19
|
+
|
20
|
+
### Uncomment for ActiveRecord ORM
|
21
|
+
# use_orm :activerecord
|
22
|
+
|
23
|
+
### Uncomment for Sequel ORM
|
24
|
+
# use_orm :sequel
|
25
|
+
|
26
|
+
### This defines which test framework the generators will use
|
27
|
+
### rspec is turned on by default
|
28
|
+
# use_test :test_unit
|
29
|
+
# use_test :rspec
|
30
|
+
|
31
|
+
### Add your other dependencies here
|
32
|
+
|
33
|
+
# These are some examples of how you might specify dependencies.
|
34
|
+
#
|
35
|
+
# dependencies "RedCloth", "merb_helpers"
|
36
|
+
# OR
|
37
|
+
# dependency "RedCloth", "> 3.0"
|
38
|
+
# OR
|
39
|
+
# dependencies "RedCloth" => "> 3.0", "ruby-aes-cext" => "= 1.0"
|
40
|
+
dependency File.join(File.dirname(__FILE__),'..','..','..','lib','merb-helpers')
|
41
|
+
|
42
|
+
Merb::BootLoader.after_app_loads do
|
43
|
+
### Add dependencies here that must load after the application loads:
|
44
|
+
|
45
|
+
# dependency "magic_admin" # this gem uses the app's model classes
|
46
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# use PathPrefix Middleware if :path_prefix is set in Merb::Config
|
2
|
+
if prefix = ::Merb::Config[:path_prefix]
|
3
|
+
use Merb::Rack::PathPrefix, prefix
|
4
|
+
end
|
5
|
+
|
6
|
+
# comment this out if you are running merb behind a load balancer
|
7
|
+
# that serves static files
|
8
|
+
use Merb::Rack::Static, Merb.dir_for(:public)
|
9
|
+
|
10
|
+
# this is our main merb application
|
11
|
+
run Merb::Rack::Application.new
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# Merb::Router is the request routing mapper for the merb framework.
|
2
|
+
#
|
3
|
+
# You can route a specific URL to a controller / action pair:
|
4
|
+
#
|
5
|
+
# r.match("/contact").
|
6
|
+
# to(:controller => "info", :action => "contact")
|
7
|
+
#
|
8
|
+
# You can define placeholder parts of the url with the :symbol notation. These
|
9
|
+
# placeholders will be available in the params hash of your controllers. For example:
|
10
|
+
#
|
11
|
+
# r.match("/books/:book_id/:action").
|
12
|
+
# to(:controller => "books")
|
13
|
+
#
|
14
|
+
# Or, use placeholders in the "to" results for more complicated routing, e.g.:
|
15
|
+
#
|
16
|
+
# r.match("/admin/:module/:controller/:action/:id").
|
17
|
+
# to(:controller => ":module/:controller")
|
18
|
+
#
|
19
|
+
# You can also use regular expressions, deferred routes, and many other options.
|
20
|
+
# See merb/specs/merb/router.rb for a fairly complete usage sample.
|
21
|
+
|
22
|
+
Merb.logger.info("Compiling routes...")
|
23
|
+
Merb::Router.prepare do |r|
|
24
|
+
# RESTful routes
|
25
|
+
# r.resources :posts
|
26
|
+
r.resources :fake_models
|
27
|
+
|
28
|
+
# This is the default route for /:controller/:action/:id
|
29
|
+
# This is fine for most cases. If you're heavily using resource-based
|
30
|
+
# routes, you may want to comment/remove this line to prevent
|
31
|
+
# clients from calling your create or destroy actions with a GET
|
32
|
+
r.default_routes
|
33
|
+
|
34
|
+
# Change this for your home page to be available at /
|
35
|
+
# r.match('/').to(:controller => 'whatever', :action =>'index')
|
36
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
3619
|
@@ -0,0 +1,624 @@
|
|
1
|
+
Sun, 28 Sep 2008 05:15:13 GMT ~ info ~ Logfile created
|
2
|
+
~ Loaded TEST Environment...
|
3
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
4
|
+
~ Parent pid: 42605
|
5
|
+
~ Loaded TEST Environment...
|
6
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
7
|
+
~ Parent pid: 42781
|
8
|
+
~ Loaded TEST Environment...
|
9
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
10
|
+
~ Loaded TEST Environment...
|
11
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
12
|
+
~ Loaded TEST Environment...
|
13
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
14
|
+
~ Loaded TEST Environment...
|
15
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
16
|
+
~ Loaded TEST Environment...
|
17
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
18
|
+
~ Loaded TEST Environment...
|
19
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
20
|
+
~ Loaded TEST Environment...
|
21
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
22
|
+
~ Loaded TEST Environment...
|
23
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
24
|
+
~ Loaded TEST Environment...
|
25
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
26
|
+
~ Loaded TEST Environment...
|
27
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
28
|
+
~ Loaded TEST Environment...
|
29
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
30
|
+
~ Loaded TEST Environment...
|
31
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
32
|
+
~ Compiling routes...
|
33
|
+
~ Killing children
|
34
|
+
~ Loaded TEST Environment...
|
35
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
36
|
+
~ Loaded TEST Environment...
|
37
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
38
|
+
~ Loaded TEST Environment...
|
39
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
40
|
+
~ Loaded TEST Environment...
|
41
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
42
|
+
~ Loaded TEST Environment...
|
43
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
44
|
+
~ Loaded TEST Environment...
|
45
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
46
|
+
~ Loaded TEST Environment...
|
47
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
48
|
+
~ Loaded TEST Environment...
|
49
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
50
|
+
~ Compiling routes...
|
51
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
52
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.001108, :before_filters_time=>2.0e-05}
|
53
|
+
~ Loaded TEST Environment...
|
54
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
55
|
+
~ Compiling routes...
|
56
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
57
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.000948, :before_filters_time=>1.8e-05}
|
58
|
+
~ Loaded TEST Environment...
|
59
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
60
|
+
~ Compiling routes...
|
61
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
62
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.000964, :before_filters_time=>1.8e-05}
|
63
|
+
~ Loaded TEST Environment...
|
64
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
65
|
+
~ Loaded TEST Environment...
|
66
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
67
|
+
~ Compiling routes...
|
68
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
69
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.000971, :before_filters_time=>1.8e-05}
|
70
|
+
~ Loaded TEST Environment...
|
71
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
72
|
+
~ Compiling routes...
|
73
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
74
|
+
~ {:after_filters_time=>2.4e-05, :action_time=>0.001643, :before_filters_time=>2.5e-05}
|
75
|
+
~ Loaded TEST Environment...
|
76
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
77
|
+
~ Compiling routes...
|
78
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
79
|
+
~ {:after_filters_time=>1.7e-05, :action_time=>0.001159, :before_filters_time=>2.1e-05}
|
80
|
+
~ Loaded TEST Environment...
|
81
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
82
|
+
~ Compiling routes...
|
83
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
84
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.000954, :before_filters_time=>1.7e-05}
|
85
|
+
~ Loaded TEST Environment...
|
86
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
87
|
+
~ Compiling routes...
|
88
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
89
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.000944, :before_filters_time=>1.8e-05}
|
90
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
91
|
+
~ {:after_filters_time=>8.0e-06, :action_time=>0.000668, :before_filters_time=>8.0e-06}
|
92
|
+
~ Loaded TEST Environment...
|
93
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
94
|
+
~ Compiling routes...
|
95
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
96
|
+
~ {:after_filters_time=>2.2e-05, :action_time=>0.001293, :before_filters_time=>2.3e-05}
|
97
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
98
|
+
~ {:after_filters_time=>1.0e-05, :action_time=>0.000893, :before_filters_time=>1.3e-05}
|
99
|
+
~ Loaded TEST Environment...
|
100
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
101
|
+
~ Compiling routes...
|
102
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
103
|
+
~ {:after_filters_time=>1.7e-05, :action_time=>0.001131, :before_filters_time=>2.1e-05}
|
104
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
105
|
+
~ {:after_filters_time=>7.0e-06, :action_time=>0.000971, :before_filters_time=>6.0e-06}
|
106
|
+
~ Loaded TEST Environment...
|
107
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
108
|
+
~ Loaded TEST Environment...
|
109
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
110
|
+
~ Compiling routes...
|
111
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
112
|
+
~ {:after_filters_time=>1.7e-05, :action_time=>0.001449, :before_filters_time=>6.6e-05}
|
113
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
114
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000689, :before_filters_time=>6.0e-06}
|
115
|
+
~ Loaded TEST Environment...
|
116
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
117
|
+
~ Compiling routes...
|
118
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
119
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.000973, :before_filters_time=>1.8e-05}
|
120
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
121
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000803, :before_filters_time=>6.0e-06}
|
122
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
123
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000781, :before_filters_time=>5.0e-06}
|
124
|
+
~ Loaded TEST Environment...
|
125
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
126
|
+
~ Compiling routes...
|
127
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
128
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.000948, :before_filters_time=>1.7e-05}
|
129
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
130
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000658, :before_filters_time=>5.0e-06}
|
131
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
132
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000775, :before_filters_time=>5.0e-06}
|
133
|
+
~ Loaded TEST Environment...
|
134
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
135
|
+
~ Compiling routes...
|
136
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
137
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.000979, :before_filters_time=>1.7e-05}
|
138
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
139
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000664, :before_filters_time=>5.0e-06}
|
140
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
141
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000751, :before_filters_time=>5.0e-06}
|
142
|
+
~ Loaded TEST Environment...
|
143
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
144
|
+
~ Compiling routes...
|
145
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
146
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.00095, :before_filters_time=>1.8e-05}
|
147
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
148
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000671, :before_filters_time=>5.0e-06}
|
149
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
150
|
+
~ {:after_filters_time=>1.0e-05, :action_time=>0.001134, :before_filters_time=>6.0e-06}
|
151
|
+
~ Loaded TEST Environment...
|
152
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
153
|
+
~ Compiling routes...
|
154
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
155
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.000949, :before_filters_time=>1.8e-05}
|
156
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
157
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000659, :before_filters_time=>6.0e-06}
|
158
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
159
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000739, :before_filters_time=>5.0e-06}
|
160
|
+
~ Loaded TEST Environment...
|
161
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
162
|
+
~ Compiling routes...
|
163
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
164
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.000945, :before_filters_time=>1.8e-05}
|
165
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
166
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000673, :before_filters_time=>6.0e-06}
|
167
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
168
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.00077, :before_filters_time=>5.0e-06}
|
169
|
+
~ Loaded TEST Environment...
|
170
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
171
|
+
~ Compiling routes...
|
172
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
173
|
+
~ {:after_filters_time=>1.8e-05, :action_time=>0.001294, :before_filters_time=>2.3e-05}
|
174
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
175
|
+
~ {:after_filters_time=>7.0e-06, :action_time=>0.002546, :before_filters_time=>6.0e-06}
|
176
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
177
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000861, :before_filters_time=>6.0e-06}
|
178
|
+
~ Loaded TEST Environment...
|
179
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
180
|
+
~ Compiling routes...
|
181
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
182
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.000946, :before_filters_time=>1.7e-05}
|
183
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
184
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000671, :before_filters_time=>6.0e-06}
|
185
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
186
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000799, :before_filters_time=>6.0e-06}
|
187
|
+
~ Loaded TEST Environment...
|
188
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
189
|
+
~ Compiling routes...
|
190
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
191
|
+
~ {:after_filters_time=>1.8e-05, :action_time=>0.00104, :before_filters_time=>1.8e-05}
|
192
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
193
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000665, :before_filters_time=>5.0e-06}
|
194
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
195
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000741, :before_filters_time=>6.0e-06}
|
196
|
+
~ Loaded TEST Environment...
|
197
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
198
|
+
~ Compiling routes...
|
199
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
200
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.001024, :before_filters_time=>1.8e-05}
|
201
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
202
|
+
~ {:after_filters_time=>9.0e-06, :action_time=>0.002132, :before_filters_time=>1.5e-05}
|
203
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
204
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.00089, :before_filters_time=>1.5e-05}
|
205
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
|
206
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.00075, :before_filters_time=>1.0e-05}
|
207
|
+
~ Loaded TEST Environment...
|
208
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
209
|
+
~ Compiling routes...
|
210
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
211
|
+
~ {:after_filters_time=>1.8e-05, :action_time=>0.001253, :before_filters_time=>2.2e-05}
|
212
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
213
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000703, :before_filters_time=>8.0e-06}
|
214
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
215
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000755, :before_filters_time=>7.0e-06}
|
216
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
|
217
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000708, :before_filters_time=>9.0e-06}
|
218
|
+
~ Loaded TEST Environment...
|
219
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
220
|
+
~ Compiling routes...
|
221
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
222
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.000968, :before_filters_time=>1.8e-05}
|
223
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
224
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000749, :before_filters_time=>5.0e-06}
|
225
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
226
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.00079, :before_filters_time=>5.0e-06}
|
227
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
|
228
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000698, :before_filters_time=>6.0e-06}
|
229
|
+
~ Loaded TEST Environment...
|
230
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
231
|
+
~ Compiling routes...
|
232
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
233
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.000988, :before_filters_time=>1.8e-05}
|
234
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
235
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000684, :before_filters_time=>5.0e-06}
|
236
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
237
|
+
~ {:after_filters_time=>7.0e-06, :action_time=>0.005576, :before_filters_time=>7.0e-06}
|
238
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
|
239
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.00073, :before_filters_time=>7.0e-06}
|
240
|
+
~ Loaded TEST Environment...
|
241
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
242
|
+
~ Compiling routes...
|
243
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
244
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.001136, :before_filters_time=>2.0e-05}
|
245
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
246
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000686, :before_filters_time=>6.0e-06}
|
247
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
248
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000783, :before_filters_time=>3.0e-05}
|
249
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
|
250
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000699, :before_filters_time=>6.0e-06}
|
251
|
+
~ Loaded TEST Environment...
|
252
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
253
|
+
~ Compiling routes...
|
254
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
255
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.001008, :before_filters_time=>1.9e-05}
|
256
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
257
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000706, :before_filters_time=>8.0e-06}
|
258
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
259
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000748, :before_filters_time=>8.0e-06}
|
260
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
|
261
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000693, :before_filters_time=>9.0e-06}
|
262
|
+
~ Loaded TEST Environment...
|
263
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
264
|
+
~ Compiling routes...
|
265
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
266
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.000959, :before_filters_time=>1.7e-05}
|
267
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
268
|
+
~ {:after_filters_time=>7.0e-06, :action_time=>0.00084, :before_filters_time=>9.0e-06}
|
269
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
270
|
+
~ {:after_filters_time=>9.0e-06, :action_time=>0.001018, :before_filters_time=>1.4e-05}
|
271
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
|
272
|
+
~ {:after_filters_time=>7.0e-06, :action_time=>0.000837, :before_filters_time=>1.2e-05}
|
273
|
+
~ Loaded TEST Environment...
|
274
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
275
|
+
~ Compiling routes...
|
276
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
277
|
+
~ {:after_filters_time=>1.7e-05, :action_time=>0.001038, :before_filters_time=>2.2e-05}
|
278
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
279
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000674, :before_filters_time=>5.0e-06}
|
280
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
281
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000858, :before_filters_time=>5.0e-06}
|
282
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
|
283
|
+
~ {:after_filters_time=>1.0e-05, :action_time=>0.000793, :before_filters_time=>9.0e-06}
|
284
|
+
~ Loaded TEST Environment...
|
285
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
286
|
+
~ Compiling routes...
|
287
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
288
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.001012, :before_filters_time=>1.9e-05}
|
289
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
290
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000642, :before_filters_time=>5.0e-06}
|
291
|
+
~ Loaded TEST Environment...
|
292
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
293
|
+
~ Compiling routes...
|
294
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
295
|
+
~ {:after_filters_time=>1.9e-05, :action_time=>0.001141, :before_filters_time=>1.8e-05}
|
296
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
297
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000696, :before_filters_time=>5.0e-06}
|
298
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
299
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000825, :before_filters_time=>5.0e-06}
|
300
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
|
301
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000775, :before_filters_time=>6.0e-06}
|
302
|
+
~ Loaded TEST Environment...
|
303
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
304
|
+
~ Compiling routes...
|
305
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
306
|
+
~ {:after_filters_time=>2.2e-05, :action_time=>0.001562, :before_filters_time=>2.0e-05}
|
307
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
308
|
+
~ {:after_filters_time=>7.0e-06, :action_time=>0.000804, :before_filters_time=>6.0e-06}
|
309
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
|
310
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000785, :before_filters_time=>6.0e-06}
|
311
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
312
|
+
~ {:after_filters_time=>7.0e-06, :action_time=>0.001001, :before_filters_time=>6.0e-06}
|
313
|
+
~ Loaded TEST Environment...
|
314
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
315
|
+
~ Compiling routes...
|
316
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
|
317
|
+
~ {:after_filters_time=>1.7e-05, :action_time=>0.00098, :before_filters_time=>1.9e-05}
|
318
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
|
319
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.00066, :before_filters_time=>6.0e-06}
|
320
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
|
321
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000653, :before_filters_time=>5.0e-06}
|
322
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
|
323
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000927, :before_filters_time=>6.0e-06}
|
324
|
+
~ Loaded TEST Environment...
|
325
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
326
|
+
~ Loaded TEST Environment...
|
327
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
328
|
+
~ Compiling routes...
|
329
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
330
|
+
~ {:after_filters_time=>1.7e-05, :action_time=>0.001045, :before_filters_time=>2.1e-05}
|
331
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
332
|
+
~ {:after_filters_time=>9.0e-06, :action_time=>0.000766, :before_filters_time=>6.0e-06}
|
333
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
334
|
+
~ {:after_filters_time=>9.0e-06, :action_time=>0.00068, :before_filters_time=>6.0e-06}
|
335
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
336
|
+
~ {:after_filters_time=>9.0e-06, :action_time=>0.000862, :before_filters_time=>6.0e-06}
|
337
|
+
~ Loaded TEST Environment...
|
338
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
339
|
+
~ Compiling routes...
|
340
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
341
|
+
~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.7e-05, :action_time=>0.000966}
|
342
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
343
|
+
~ {:after_filters_time=>1.0e-05, :before_filters_time=>5.0e-06, :action_time=>0.000906}
|
344
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
345
|
+
~ {:after_filters_time=>1.6e-05, :before_filters_time=>6.0e-06, :action_time=>0.000881}
|
346
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
347
|
+
~ {:after_filters_time=>1.2e-05, :before_filters_time=>7.0e-06, :action_time=>0.001001}
|
348
|
+
~ Loaded TEST Environment...
|
349
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
350
|
+
~ Compiling routes...
|
351
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
352
|
+
~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.8e-05, :action_time=>0.00098}
|
353
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
354
|
+
~ {:after_filters_time=>1.0e-05, :before_filters_time=>6.0e-06, :action_time=>0.000928}
|
355
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
356
|
+
~ {:after_filters_time=>1.3e-05, :before_filters_time=>6.0e-06, :action_time=>0.000869}
|
357
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
358
|
+
~ {:after_filters_time=>1.0e-05, :before_filters_time=>7.0e-06, :action_time=>0.000909}
|
359
|
+
~ Loaded TEST Environment...
|
360
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
361
|
+
~ Compiling routes...
|
362
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
363
|
+
~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.8e-05, :action_time=>0.001027}
|
364
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
365
|
+
~ {:after_filters_time=>9.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.000778}
|
366
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
367
|
+
~ {:after_filters_time=>1.4e-05, :before_filters_time=>7.0e-06, :action_time=>0.00091}
|
368
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
369
|
+
~ {:after_filters_time=>1.1e-05, :before_filters_time=>7.0e-06, :action_time=>0.000929}
|
370
|
+
~ Loaded TEST Environment...
|
371
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
372
|
+
~ Compiling routes...
|
373
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
374
|
+
~ {:after_filters_time=>2.2e-05, :before_filters_time=>1.8e-05, :action_time=>0.001125}
|
375
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
376
|
+
~ {:after_filters_time=>9.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.000799}
|
377
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
378
|
+
~ {:after_filters_time=>8.0e-06, :before_filters_time=>5.0e-06, :action_time=>0.000738}
|
379
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
380
|
+
~ {:after_filters_time=>1.0e-05, :before_filters_time=>5.0e-06, :action_time=>0.000893}
|
381
|
+
~ Loaded TEST Environment...
|
382
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
383
|
+
~ Compiling routes...
|
384
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
385
|
+
~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.9e-05, :action_time=>0.001018}
|
386
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
387
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000667}
|
388
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
389
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000672}
|
390
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
391
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000764}
|
392
|
+
~ Loaded TEST Environment...
|
393
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
394
|
+
~ Compiling routes...
|
395
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
396
|
+
~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.9e-05, :action_time=>0.001059}
|
397
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
398
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.000714}
|
399
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
400
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.000828}
|
401
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
402
|
+
~ {:after_filters_time=>8.0e-06, :before_filters_time=>5.0e-06, :action_time=>0.000806}
|
403
|
+
~ Loaded TEST Environment...
|
404
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
405
|
+
~ Compiling routes...
|
406
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
407
|
+
~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.8e-05, :action_time=>0.000947}
|
408
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
409
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000661}
|
410
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
411
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>5.0e-06, :action_time=>0.000672}
|
412
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
413
|
+
~ {:after_filters_time=>9.0e-06, :before_filters_time=>1.1e-05, :action_time=>0.000815}
|
414
|
+
~ Loaded TEST Environment...
|
415
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
416
|
+
~ Compiling routes...
|
417
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
418
|
+
~ {:after_filters_time=>1.8e-05, :before_filters_time=>1.9e-05, :action_time=>0.001219}
|
419
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
420
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.00072}
|
421
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
422
|
+
~ {:after_filters_time=>1.2e-05, :before_filters_time=>5.0e-06, :action_time=>0.000712}
|
423
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
424
|
+
~ {:after_filters_time=>8.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.000828}
|
425
|
+
~ Loaded TEST Environment...
|
426
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
427
|
+
~ Compiling routes...
|
428
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
429
|
+
~ {:after_filters_time=>1.8e-05, :before_filters_time=>1.7e-05, :action_time=>0.001035}
|
430
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
431
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000704}
|
432
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
433
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>1.5e-05, :action_time=>0.000707}
|
434
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
435
|
+
~ {:after_filters_time=>7.0e-06, :before_filters_time=>9.0e-06, :action_time=>0.000931}
|
436
|
+
~ Loaded TEST Environment...
|
437
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
438
|
+
~ Compiling routes...
|
439
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
440
|
+
~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.7e-05, :action_time=>0.000967}
|
441
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
442
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000644}
|
443
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
444
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>7.0e-06, :action_time=>0.000912}
|
445
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
446
|
+
~ {:after_filters_time=>9.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000892}
|
447
|
+
~ Loaded TEST Environment...
|
448
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
449
|
+
~ Compiling routes...
|
450
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
451
|
+
~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.8e-05, :action_time=>0.000998}
|
452
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
453
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000658}
|
454
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
455
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000726}
|
456
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
457
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000773}
|
458
|
+
~ Loaded TEST Environment...
|
459
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
460
|
+
~ Loaded TEST Environment...
|
461
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
462
|
+
~ Compiling routes...
|
463
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
464
|
+
~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.8e-05, :action_time=>0.001042}
|
465
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
466
|
+
~ {:after_filters_time=>1.3e-05, :before_filters_time=>7.0e-06, :action_time=>0.00082}
|
467
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
468
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000725}
|
469
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
470
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>9.0e-06, :action_time=>0.000833}
|
471
|
+
~ Loaded TEST Environment...
|
472
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
473
|
+
~ Compiling routes...
|
474
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
475
|
+
~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.8e-05, :action_time=>0.001085}
|
476
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
477
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.000705}
|
478
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
479
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.000826}
|
480
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
481
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.00087}
|
482
|
+
~ Loaded TEST Environment...
|
483
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
484
|
+
~ Compiling routes...
|
485
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
486
|
+
~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.9e-05, :action_time=>0.001046}
|
487
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
488
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>5.0e-06, :action_time=>0.00071}
|
489
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
490
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>5.0e-06, :action_time=>0.000731}
|
491
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
492
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>5.0e-06, :action_time=>0.00082}
|
493
|
+
~ Loaded TEST Environment...
|
494
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
495
|
+
~ Compiling routes...
|
496
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
497
|
+
~ {:after_filters_time=>1.8e-05, :before_filters_time=>1.8e-05, :action_time=>0.0012}
|
498
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
499
|
+
~ {:after_filters_time=>5.0e-06, :before_filters_time=>5.0e-06, :action_time=>0.000738}
|
500
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
501
|
+
~ {:after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.000904}
|
502
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
503
|
+
~ {:after_filters_time=>8.0e-06, :before_filters_time=>1.0e-05, :action_time=>0.000933}
|
504
|
+
~ Loaded TEST Environment...
|
505
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
506
|
+
~ Compiling routes...
|
507
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
508
|
+
~ {:after_filters_time=>2.0e-05, :before_filters_time=>1.9e-05, :action_time=>0.001396}
|
509
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
510
|
+
~ {:after_filters_time=>9.0e-06, :before_filters_time=>9.0e-06, :action_time=>0.001071}
|
511
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
512
|
+
~ {:after_filters_time=>7.0e-06, :before_filters_time=>9.0e-06, :action_time=>0.001076}
|
513
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
514
|
+
~ {:after_filters_time=>8.0e-06, :before_filters_time=>7.0e-06, :action_time=>0.002392}
|
515
|
+
~ Loaded TEST Environment...
|
516
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
517
|
+
~ Compiling routes...
|
518
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
519
|
+
~ {:action_time=>0.001215, :after_filters_time=>2.3e-05, :before_filters_time=>2.8e-05}
|
520
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
521
|
+
~ {:action_time=>0.000855, :after_filters_time=>8.0e-06, :before_filters_time=>1.0e-05}
|
522
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
523
|
+
~ {:action_time=>0.000741, :after_filters_time=>9.0e-06, :before_filters_time=>8.0e-06}
|
524
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
525
|
+
~ {:action_time=>0.001059, :after_filters_time=>1.1e-05, :before_filters_time=>9.0e-06}
|
526
|
+
~ Loaded TEST Environment...
|
527
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
528
|
+
~ Compiling routes...
|
529
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
530
|
+
~ {:action_time=>0.001165, :after_filters_time=>1.7e-05, :before_filters_time=>1.8e-05}
|
531
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
532
|
+
~ {:action_time=>0.000698, :after_filters_time=>9.0e-06, :before_filters_time=>9.0e-06}
|
533
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
534
|
+
~ {:action_time=>0.000838, :after_filters_time=>9.0e-06, :before_filters_time=>8.0e-06}
|
535
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
536
|
+
~ {:action_time=>0.000855, :after_filters_time=>1.1e-05, :before_filters_time=>9.0e-06}
|
537
|
+
~ Loaded TEST Environment...
|
538
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
539
|
+
~ Compiling routes...
|
540
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
541
|
+
~ {:action_time=>0.000977, :after_filters_time=>1.6e-05, :before_filters_time=>1.7e-05}
|
542
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
543
|
+
~ {:action_time=>0.000773, :after_filters_time=>9.0e-06, :before_filters_time=>6.0e-06}
|
544
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
545
|
+
~ {:action_time=>0.000796, :after_filters_time=>9.0e-06, :before_filters_time=>6.0e-06}
|
546
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
547
|
+
~ {:action_time=>0.000788, :after_filters_time=>8.0e-06, :before_filters_time=>5.0e-06}
|
548
|
+
~ Loaded TEST Environment...
|
549
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
550
|
+
~ Compiling routes...
|
551
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
552
|
+
~ {:action_time=>0.001073, :after_filters_time=>1.7e-05, :before_filters_time=>1.9e-05}
|
553
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
554
|
+
~ {:action_time=>0.000684, :after_filters_time=>8.0e-06, :before_filters_time=>6.0e-06}
|
555
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
556
|
+
~ {:action_time=>0.000683, :after_filters_time=>9.0e-06, :before_filters_time=>5.0e-06}
|
557
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
558
|
+
~ {:action_time=>0.000991, :after_filters_time=>1.0e-05, :before_filters_time=>6.0e-06}
|
559
|
+
~ Loaded TEST Environment...
|
560
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
561
|
+
~ Compiling routes...
|
562
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
563
|
+
~ {:action_time=>0.001064, :after_filters_time=>1.7e-05, :before_filters_time=>2.1e-05}
|
564
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
565
|
+
~ {:action_time=>0.000694, :after_filters_time=>8.0e-06, :before_filters_time=>6.0e-06}
|
566
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
567
|
+
~ {:action_time=>0.000688, :after_filters_time=>8.0e-06, :before_filters_time=>5.0e-06}
|
568
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
569
|
+
~ {:action_time=>0.00082, :after_filters_time=>1.0e-05, :before_filters_time=>6.0e-06}
|
570
|
+
~ Loaded TEST Environment...
|
571
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
572
|
+
~ Compiling routes...
|
573
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
574
|
+
~ {:action_time=>0.000991, :after_filters_time=>1.6e-05, :before_filters_time=>1.8e-05}
|
575
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
576
|
+
~ {:action_time=>0.000817, :after_filters_time=>1.0e-05, :before_filters_time=>7.0e-06}
|
577
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
578
|
+
~ {:action_time=>0.000691, :after_filters_time=>8.0e-06, :before_filters_time=>5.0e-06}
|
579
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
580
|
+
~ {:action_time=>0.000831, :after_filters_time=>9.0e-06, :before_filters_time=>2.5e-05}
|
581
|
+
~ Loaded TEST Environment...
|
582
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
583
|
+
~ Compiling routes...
|
584
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
585
|
+
~ {:action_time=>0.000965, :after_filters_time=>1.6e-05, :before_filters_time=>1.7e-05}
|
586
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
587
|
+
~ {:action_time=>0.000683, :after_filters_time=>8.0e-06, :before_filters_time=>6.0e-06}
|
588
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
589
|
+
~ {:action_time=>0.000699, :after_filters_time=>8.0e-06, :before_filters_time=>6.0e-06}
|
590
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
591
|
+
~ {:action_time=>0.000868, :after_filters_time=>1.0e-05, :before_filters_time=>6.0e-06}
|
592
|
+
~ Loaded TEST Environment...
|
593
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
594
|
+
~ Compiling routes...
|
595
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
596
|
+
~ {:action_time=>0.001041, :after_filters_time=>2.3e-05, :before_filters_time=>1.8e-05}
|
597
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
598
|
+
~ {:action_time=>0.000703, :after_filters_time=>9.0e-06, :before_filters_time=>5.0e-06}
|
599
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
600
|
+
~ {:action_time=>0.000721, :after_filters_time=>9.0e-06, :before_filters_time=>1.3e-05}
|
601
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
602
|
+
~ {:action_time=>0.000836, :after_filters_time=>1.0e-05, :before_filters_time=>9.0e-06}
|
603
|
+
~ Loaded TEST Environment...
|
604
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
605
|
+
~ Compiling routes...
|
606
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
607
|
+
~ {:after_filters_time=>2.1e-05, :action_time=>0.001367, :before_filters_time=>2.9e-05}
|
608
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
609
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000744, :before_filters_time=>6.0e-06}
|
610
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
611
|
+
~ {:after_filters_time=>7.0e-06, :action_time=>0.006213, :before_filters_time=>5.0e-06}
|
612
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
613
|
+
~ {:after_filters_time=>1.3e-05, :action_time=>0.011462, :before_filters_time=>1.3e-05}
|
614
|
+
~ Loaded TEST Environment...
|
615
|
+
~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
|
616
|
+
~ Compiling routes...
|
617
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
|
618
|
+
~ {:after_filters_time=>1.6e-05, :action_time=>0.001152, :before_filters_time=>2.1e-05}
|
619
|
+
~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
|
620
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000839, :before_filters_time=>6.0e-06}
|
621
|
+
~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
|
622
|
+
~ {:after_filters_time=>5.0e-06, :action_time=>0.000871, :before_filters_time=>6.0e-06}
|
623
|
+
~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
|
624
|
+
~ {:after_filters_time=>6.0e-06, :action_time=>0.000801, :before_filters_time=>1.1e-05}
|