erector 0.9.0 → 0.10.0
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.
- checksums.yaml +7 -0
- data/Gemfile +2 -1
- data/README.txt +1 -1
- data/Rakefile +30 -18
- data/VERSION.yml +1 -1
- data/lib/erector/abstract_widget.rb +10 -0
- data/lib/erector/html_widget.rb +20 -20
- data/lib/erector/needs.rb +10 -2
- data/lib/erector/promise.rb +4 -0
- data/lib/erector/rails3.rb +10 -0
- data/lib/erector/sass.rb +5 -1
- data/lib/erector/widgets/table.rb +5 -12
- data/spec/erect/erect_rails_spec.rb +3 -3
- data/spec/erector/convenience_spec.rb +1 -1
- data/spec/erector/hello_from_readme_spec.rb +2 -2
- data/spec/erector/html_spec.rb +35 -1
- data/spec/erector/indentation_spec.rb +1 -1
- data/spec/erector/needs_spec.rb +10 -1
- data/spec/erector/sass_spec.rb +36 -12
- data/spec/rails2/rails_app/log/test.log +1134 -0
- data/spec/rails_root/app/views/layouts/erb_as_layout.html.erb +2 -0
- data/spec/rails_root/app/views/layouts/widget_as_layout.rb +2 -2
- data/spec/rails_root/app/views/test/render_default_erb_with_layout.html.erb +1 -0
- data/spec/rails_root/app/views/test/render_default_widget_with_layout.html.rb +5 -0
- data/spec/rails_root/config/environments/test.rb +1 -1
- data/spec/rails_root/log/test.log +1164 -0
- data/spec/rails_root/spec/rails_helpers_spec.rb +23 -15
- data/spec/rails_root/spec/rails_widget_spec.rb +3 -3
- data/spec/rails_root/spec/render_spec.rb +90 -47
- metadata +58 -69
- data/spec/rails_root/app/views/layouts/application.html.erb +0 -14
data/spec/erector/needs_spec.rb
CHANGED
@@ -99,9 +99,10 @@ describe Erector::Needs do
|
|
99
99
|
|
100
100
|
it "doesn't attempt to dup undupable value if there's another need passed in (bug)" do
|
101
101
|
class Section < Erector::Widget
|
102
|
-
needs :title, :href => nil, :stinky => false, :awesome => true, :answer => 42, :shoe_size => 12.5
|
102
|
+
needs :title, :href => nil, :stinky => false, :awesome => true, :answer => 42, :shoe_size => 12.5, :event_type => :jump
|
103
103
|
end
|
104
104
|
Section.new(:title => "Steal Underpants").instance_variable_get(:@awesome).should == true
|
105
|
+
Section.new(:title => "Steal Underpants").instance_variable_get(:@event_type).should == :jump
|
105
106
|
end
|
106
107
|
|
107
108
|
it "accumulates needs across the inheritance chain even with modules mixed in" do
|
@@ -136,4 +137,12 @@ describe Erector::Needs do
|
|
136
137
|
end
|
137
138
|
lambda { ThingWithOverlap.new(:text => "alas") }.should_not raise_error(ArgumentError)
|
138
139
|
end
|
140
|
+
|
141
|
+
it "doesn't complain if you pass it an undeclared parameter and ignore_extra_assigns is set to true" do
|
142
|
+
class ThingIgnoreExtraAssigns < Erector::Widget
|
143
|
+
needs :foo
|
144
|
+
end
|
145
|
+
ThingIgnoreExtraAssigns.ignore_extra_assigns = true
|
146
|
+
lambda { ThingIgnoreExtraAssigns.new(:foo => 1, :bar => 1) }.should_not raise_error(ArgumentError)
|
147
|
+
end
|
139
148
|
end
|
data/spec/erector/sass_spec.rb
CHANGED
@@ -1,19 +1,29 @@
|
|
1
1
|
require File.expand_path("#{File.dirname(__FILE__)}/../spec_helper")
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
3
|
+
module CacheSpec
|
4
|
+
describe Erector::Sass do
|
5
|
+
include Erector::Mixin
|
6
|
+
describe 'the #sass method' do
|
7
|
+
it "renders SCSS by default, since that's what Sass recommends these days" do
|
8
|
+
erector {sass SAMPLE_SCSS}.should == SAMPLE_CSS
|
9
|
+
end
|
10
|
+
it "renders SASS with explicit option" do
|
11
|
+
erector {sass SAMPLE_SASS, :syntax => :sass}.should == SAMPLE_CSS
|
12
|
+
end
|
13
|
+
it "renders SCSS with explicit option" do
|
14
|
+
erector {sass SAMPLE_SCSS, :syntax => :scss}.should == SAMPLE_CSS
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
describe 'the #scss method' do
|
19
|
+
it "renders SCSS" do
|
20
|
+
erector {scss SAMPLE_SCSS}.should == SAMPLE_CSS
|
11
21
|
end
|
12
22
|
end
|
13
23
|
end
|
14
24
|
end
|
15
25
|
|
16
|
-
SAMPLE_SASS =<<-SASS
|
26
|
+
SAMPLE_SASS =<<-SASS.strip
|
17
27
|
h1
|
18
28
|
height: 118px
|
19
29
|
margin-top: 1em
|
@@ -21,13 +31,27 @@ h1
|
|
21
31
|
.tagline
|
22
32
|
font-size: 26px
|
23
33
|
text-align: right
|
24
|
-
|
34
|
+
SASS
|
35
|
+
|
36
|
+
SAMPLE_SCSS =<<-CSS.strip
|
37
|
+
h1 {
|
38
|
+
height: 118px;
|
39
|
+
margin-top: 1em;
|
40
|
+
}
|
41
|
+
|
42
|
+
.tagline {
|
43
|
+
font-size: 26px;
|
44
|
+
text-align: right;
|
45
|
+
}
|
46
|
+
CSS
|
25
47
|
|
26
|
-
SAMPLE_CSS
|
48
|
+
SAMPLE_CSS =<<-CSS.strip
|
49
|
+
<style>h1 {
|
27
50
|
height: 118px;
|
28
51
|
margin-top: 1em; }
|
29
52
|
|
30
53
|
.tagline {
|
31
54
|
font-size: 26px;
|
32
55
|
text-align: right; }
|
33
|
-
</style>
|
56
|
+
</style>
|
57
|
+
CSS
|
@@ -2896,3 +2896,1137 @@ Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
|
2896
2896
|
|
2897
2897
|
Processing TestController#render_with_needs (for 0.0.0.0 at 2012-08-12 10:23:10) [GET]
|
2898
2898
|
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
2899
|
+
|
2900
|
+
|
2901
|
+
Processing TestController#render_widget_with_implicit_assigns (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2902
|
+
Completed in 2ms (View: 0 | 200 OK [http://test.host/]
|
2903
|
+
|
2904
|
+
|
2905
|
+
Processing TestController#render_widget_with_explicit_assigns (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2906
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
2907
|
+
|
2908
|
+
|
2909
|
+
Processing TestController#render_widget_class (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2910
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
2911
|
+
|
2912
|
+
|
2913
|
+
Processing TestController#render_widget_instance (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2914
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
2915
|
+
|
2916
|
+
|
2917
|
+
Processing TestController#render_widget_with_ignored_controller_variables (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2918
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
2919
|
+
|
2920
|
+
|
2921
|
+
Processing TestController#render_widget_with_extra_controller_variables (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2922
|
+
|
2923
|
+
|
2924
|
+
Processing TestController#render_with_content_method (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2925
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
2926
|
+
|
2927
|
+
|
2928
|
+
Processing TestController#render_with_rails_options (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2929
|
+
Completed in 0ms (View: 0 | 500 Internal Server Error [http://test.host/]
|
2930
|
+
|
2931
|
+
|
2932
|
+
Processing TestController#render_template_with_implicit_assigns (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2933
|
+
Rendering test/implicit_assigns.html.rb
|
2934
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
2935
|
+
|
2936
|
+
|
2937
|
+
Processing TestController#render_template_with_protected_instance_variable (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2938
|
+
Rendering test/protected_instance_variable.html.rb
|
2939
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
2940
|
+
|
2941
|
+
|
2942
|
+
Processing TestController#render_bare_rb (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2943
|
+
Rendering test/bare.rb
|
2944
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
2945
|
+
|
2946
|
+
|
2947
|
+
Processing TestController#render_template_with_excess_variables (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2948
|
+
Rendering test/render_default.html.rb
|
2949
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
2950
|
+
|
2951
|
+
|
2952
|
+
Processing TestController#render_needs_template_with_excess_variables (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2953
|
+
Rendering test/needs.html.rb
|
2954
|
+
|
2955
|
+
|
2956
|
+
Processing TestController#render_needs_template_with_excess_variables_and_ignoring_extras (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2957
|
+
Rendering test/needs.html.rb
|
2958
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
2959
|
+
|
2960
|
+
|
2961
|
+
Processing TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2962
|
+
Rendering test/needs_subclass.html.rb
|
2963
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
2964
|
+
|
2965
|
+
|
2966
|
+
Processing TestController#render_template_with_partial (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2967
|
+
Rendering test/render_partial.html.rb
|
2968
|
+
Rendered test/_erector (0.9ms)
|
2969
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
2970
|
+
|
2971
|
+
|
2972
|
+
Processing TestController#render_erb_from_erector (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2973
|
+
Rendering test/erb_from_erector.html.rb
|
2974
|
+
Rendered test/_erb (0.3ms)
|
2975
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
2976
|
+
|
2977
|
+
|
2978
|
+
Processing TestController#render_erector_from_erb (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2979
|
+
Rendering test/erector_from_erb.html.erb
|
2980
|
+
Rendered test/_erector (0.3ms)
|
2981
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
2982
|
+
|
2983
|
+
|
2984
|
+
Processing TestController#render_erector_with_locals_from_erb (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2985
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
2986
|
+
Rendered test/_partial_with_locals (1.2ms)
|
2987
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
2988
|
+
|
2989
|
+
|
2990
|
+
Processing TestController#render_erector_with_locals_from_erb_defaulted (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2991
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
2992
|
+
Rendered test/_partial_with_locals (0.5ms)
|
2993
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
2994
|
+
|
2995
|
+
|
2996
|
+
Processing TestController#render_erector_with_locals_from_erb_override (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
2997
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
2998
|
+
Rendered test/_partial_with_locals (0.5ms)
|
2999
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3000
|
+
|
3001
|
+
|
3002
|
+
Processing TestController#render_erector_with_locals_from_erb_not_needed (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
3003
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3004
|
+
|
3005
|
+
|
3006
|
+
Processing TestController#render_erector_partial_with_unneeded_controller_variables (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
3007
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3008
|
+
Rendered test/_partial_with_locals (0.4ms)
|
3009
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3010
|
+
|
3011
|
+
|
3012
|
+
Processing TestController#render_erector_partial_without_controller_variables (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
3013
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3014
|
+
Rendered test/_partial_with_locals (0.3ms)
|
3015
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3016
|
+
|
3017
|
+
|
3018
|
+
Processing TestController#render_default (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
3019
|
+
Rendering test/render_default
|
3020
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3021
|
+
|
3022
|
+
|
3023
|
+
Processing TestController#render_with_needs (for 0.0.0.0 at 2012-11-14 14:31:37) [GET]
|
3024
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
3025
|
+
|
3026
|
+
|
3027
|
+
Processing TestController#render_widget_with_implicit_assigns (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3028
|
+
Completed in 9ms (View: 1 | 200 OK [http://test.host/]
|
3029
|
+
|
3030
|
+
|
3031
|
+
Processing TestController#render_widget_with_explicit_assigns (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3032
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
3033
|
+
|
3034
|
+
|
3035
|
+
Processing TestController#render_widget_class (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3036
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
3037
|
+
|
3038
|
+
|
3039
|
+
Processing TestController#render_widget_instance (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3040
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
3041
|
+
|
3042
|
+
|
3043
|
+
Processing TestController#render_widget_with_ignored_controller_variables (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3044
|
+
Completed in 2ms (View: 0 | 200 OK [http://test.host/]
|
3045
|
+
|
3046
|
+
|
3047
|
+
Processing TestController#render_widget_with_extra_controller_variables (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3048
|
+
|
3049
|
+
|
3050
|
+
Processing TestController#render_with_content_method (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3051
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
3052
|
+
|
3053
|
+
|
3054
|
+
Processing TestController#render_with_rails_options (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3055
|
+
Completed in 6ms (View: 5 | 500 Internal Server Error [http://test.host/]
|
3056
|
+
|
3057
|
+
|
3058
|
+
Processing TestController#render_template_with_implicit_assigns (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3059
|
+
Rendering test/implicit_assigns.html.rb
|
3060
|
+
Completed in 8ms (View: 8 | 200 OK [http://test.host/]
|
3061
|
+
|
3062
|
+
|
3063
|
+
Processing TestController#render_template_with_protected_instance_variable (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3064
|
+
Rendering test/protected_instance_variable.html.rb
|
3065
|
+
Completed in 5ms (View: 4 | 200 OK [http://test.host/]
|
3066
|
+
|
3067
|
+
|
3068
|
+
Processing TestController#render_bare_rb (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3069
|
+
Rendering test/bare.rb
|
3070
|
+
Completed in 22ms (View: 21 | 200 OK [http://test.host/]
|
3071
|
+
|
3072
|
+
|
3073
|
+
Processing TestController#render_template_with_excess_variables (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3074
|
+
Rendering test/render_default.html.rb
|
3075
|
+
Completed in 3ms (View: 3 | 200 OK [http://test.host/]
|
3076
|
+
|
3077
|
+
|
3078
|
+
Processing TestController#render_needs_template_with_excess_variables (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3079
|
+
Rendering test/needs.html.rb
|
3080
|
+
|
3081
|
+
|
3082
|
+
Processing TestController#render_needs_template_with_excess_variables_and_ignoring_extras (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3083
|
+
Rendering test/needs.html.rb
|
3084
|
+
Completed in 2ms (View: 1 | 200 OK [http://test.host/]
|
3085
|
+
|
3086
|
+
|
3087
|
+
Processing TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3088
|
+
Rendering test/needs_subclass.html.rb
|
3089
|
+
Completed in 4ms (View: 4 | 200 OK [http://test.host/]
|
3090
|
+
|
3091
|
+
|
3092
|
+
Processing TestController#render_template_with_partial (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3093
|
+
Rendering test/render_partial.html.rb
|
3094
|
+
Rendered test/_erector (7.6ms)
|
3095
|
+
Completed in 16ms (View: 16 | 200 OK [http://test.host/]
|
3096
|
+
|
3097
|
+
|
3098
|
+
Processing TestController#render_erb_from_erector (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3099
|
+
Rendering test/erb_from_erector.html.rb
|
3100
|
+
Rendered test/_erb (0.8ms)
|
3101
|
+
Completed in 6ms (View: 6 | 200 OK [http://test.host/]
|
3102
|
+
|
3103
|
+
|
3104
|
+
Processing TestController#render_erector_from_erb (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3105
|
+
Rendering test/erector_from_erb.html.erb
|
3106
|
+
Rendered test/_erector (0.6ms)
|
3107
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3108
|
+
|
3109
|
+
|
3110
|
+
Processing TestController#render_erector_with_locals_from_erb (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3111
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3112
|
+
Rendered test/_partial_with_locals (4.2ms)
|
3113
|
+
Completed in 6ms (View: 6 | 200 OK [http://test.host/]
|
3114
|
+
|
3115
|
+
|
3116
|
+
Processing TestController#render_erector_with_locals_from_erb_defaulted (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3117
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3118
|
+
Rendered test/_partial_with_locals (1.2ms)
|
3119
|
+
Completed in 3ms (View: 3 | 200 OK [http://test.host/]
|
3120
|
+
|
3121
|
+
|
3122
|
+
Processing TestController#render_erector_with_locals_from_erb_override (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3123
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3124
|
+
Rendered test/_partial_with_locals (0.8ms)
|
3125
|
+
Completed in 4ms (View: 4 | 200 OK [http://test.host/]
|
3126
|
+
|
3127
|
+
|
3128
|
+
Processing TestController#render_erector_with_locals_from_erb_not_needed (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3129
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3130
|
+
|
3131
|
+
|
3132
|
+
Processing TestController#render_erector_partial_with_unneeded_controller_variables (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3133
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3134
|
+
Rendered test/_partial_with_locals (1.8ms)
|
3135
|
+
Completed in 5ms (View: 5 | 200 OK [http://test.host/]
|
3136
|
+
|
3137
|
+
|
3138
|
+
Processing TestController#render_erector_partial_without_controller_variables (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3139
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3140
|
+
Rendered test/_partial_with_locals (3.3ms)
|
3141
|
+
Completed in 14ms (View: 14 | 200 OK [http://test.host/]
|
3142
|
+
|
3143
|
+
|
3144
|
+
Processing TestController#render_default (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3145
|
+
Rendering test/render_default
|
3146
|
+
Completed in 11ms (View: 11 | 200 OK [http://test.host/]
|
3147
|
+
|
3148
|
+
|
3149
|
+
Processing TestController#render_with_needs (for 0.0.0.0 at 2012-12-02 13:36:45) [GET]
|
3150
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
3151
|
+
|
3152
|
+
|
3153
|
+
Processing TestController#render_widget_with_implicit_assigns (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3154
|
+
Completed in 2ms (View: 0 | 200 OK [http://test.host/]
|
3155
|
+
|
3156
|
+
|
3157
|
+
Processing TestController#render_widget_with_explicit_assigns (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3158
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
3159
|
+
|
3160
|
+
|
3161
|
+
Processing TestController#render_widget_class (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3162
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3163
|
+
|
3164
|
+
|
3165
|
+
Processing TestController#render_widget_instance (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3166
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3167
|
+
|
3168
|
+
|
3169
|
+
Processing TestController#render_widget_with_ignored_controller_variables (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3170
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
3171
|
+
|
3172
|
+
|
3173
|
+
Processing TestController#render_widget_with_extra_controller_variables (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3174
|
+
|
3175
|
+
|
3176
|
+
Processing TestController#render_with_content_method (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3177
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3178
|
+
|
3179
|
+
|
3180
|
+
Processing TestController#render_with_rails_options (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3181
|
+
Completed in 0ms (View: 0 | 500 Internal Server Error [http://test.host/]
|
3182
|
+
|
3183
|
+
|
3184
|
+
Processing TestController#render_template_with_implicit_assigns (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3185
|
+
Rendering test/implicit_assigns.html.rb
|
3186
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3187
|
+
|
3188
|
+
|
3189
|
+
Processing TestController#render_template_with_protected_instance_variable (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3190
|
+
Rendering test/protected_instance_variable.html.rb
|
3191
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3192
|
+
|
3193
|
+
|
3194
|
+
Processing TestController#render_bare_rb (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3195
|
+
Rendering test/bare.rb
|
3196
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3197
|
+
|
3198
|
+
|
3199
|
+
Processing TestController#render_template_with_excess_variables (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3200
|
+
Rendering test/render_default.html.rb
|
3201
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3202
|
+
|
3203
|
+
|
3204
|
+
Processing TestController#render_needs_template_with_excess_variables (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3205
|
+
Rendering test/needs.html.rb
|
3206
|
+
|
3207
|
+
|
3208
|
+
Processing TestController#render_needs_template_with_excess_variables_and_ignoring_extras (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3209
|
+
Rendering test/needs.html.rb
|
3210
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3211
|
+
|
3212
|
+
|
3213
|
+
Processing TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3214
|
+
Rendering test/needs_subclass.html.rb
|
3215
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3216
|
+
|
3217
|
+
|
3218
|
+
Processing TestController#render_template_with_partial (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3219
|
+
Rendering test/render_partial.html.rb
|
3220
|
+
Rendered test/_erector (0.9ms)
|
3221
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3222
|
+
|
3223
|
+
|
3224
|
+
Processing TestController#render_erb_from_erector (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3225
|
+
Rendering test/erb_from_erector.html.rb
|
3226
|
+
Rendered test/_erb (0.3ms)
|
3227
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3228
|
+
|
3229
|
+
|
3230
|
+
Processing TestController#render_erector_from_erb (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3231
|
+
Rendering test/erector_from_erb.html.erb
|
3232
|
+
Rendered test/_erector (0.3ms)
|
3233
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3234
|
+
|
3235
|
+
|
3236
|
+
Processing TestController#render_erector_with_locals_from_erb (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3237
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3238
|
+
Rendered test/_partial_with_locals (1.3ms)
|
3239
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3240
|
+
|
3241
|
+
|
3242
|
+
Processing TestController#render_erector_with_locals_from_erb_defaulted (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3243
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3244
|
+
Rendered test/_partial_with_locals (0.5ms)
|
3245
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3246
|
+
|
3247
|
+
|
3248
|
+
Processing TestController#render_erector_with_locals_from_erb_override (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3249
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3250
|
+
Rendered test/_partial_with_locals (0.3ms)
|
3251
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3252
|
+
|
3253
|
+
|
3254
|
+
Processing TestController#render_erector_with_locals_from_erb_not_needed (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3255
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3256
|
+
|
3257
|
+
|
3258
|
+
Processing TestController#render_erector_partial_with_unneeded_controller_variables (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3259
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3260
|
+
Rendered test/_partial_with_locals (0.4ms)
|
3261
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3262
|
+
|
3263
|
+
|
3264
|
+
Processing TestController#render_erector_partial_without_controller_variables (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3265
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3266
|
+
Rendered test/_partial_with_locals (0.3ms)
|
3267
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3268
|
+
|
3269
|
+
|
3270
|
+
Processing TestController#render_default (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3271
|
+
Rendering test/render_default
|
3272
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3273
|
+
|
3274
|
+
|
3275
|
+
Processing TestController#render_with_needs (for 0.0.0.0 at 2013-02-08 07:26:27) [GET]
|
3276
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3277
|
+
|
3278
|
+
|
3279
|
+
Processing TestController#render_widget_with_implicit_assigns (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3280
|
+
Completed in 2ms (View: 0 | 200 OK [http://test.host/]
|
3281
|
+
|
3282
|
+
|
3283
|
+
Processing TestController#render_widget_with_explicit_assigns (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3284
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3285
|
+
|
3286
|
+
|
3287
|
+
Processing TestController#render_widget_class (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3288
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3289
|
+
|
3290
|
+
|
3291
|
+
Processing TestController#render_widget_instance (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3292
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
3293
|
+
|
3294
|
+
|
3295
|
+
Processing TestController#render_widget_with_ignored_controller_variables (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3296
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
3297
|
+
|
3298
|
+
|
3299
|
+
Processing TestController#render_widget_with_extra_controller_variables (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3300
|
+
|
3301
|
+
|
3302
|
+
Processing TestController#render_with_content_method (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3303
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3304
|
+
|
3305
|
+
|
3306
|
+
Processing TestController#render_with_rails_options (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3307
|
+
Completed in 0ms (View: 0 | 500 Internal Server Error [http://test.host/]
|
3308
|
+
|
3309
|
+
|
3310
|
+
Processing TestController#render_template_with_implicit_assigns (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3311
|
+
Rendering test/implicit_assigns.html.rb
|
3312
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3313
|
+
|
3314
|
+
|
3315
|
+
Processing TestController#render_template_with_protected_instance_variable (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3316
|
+
Rendering test/protected_instance_variable.html.rb
|
3317
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3318
|
+
|
3319
|
+
|
3320
|
+
Processing TestController#render_bare_rb (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3321
|
+
Rendering test/bare.rb
|
3322
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3323
|
+
|
3324
|
+
|
3325
|
+
Processing TestController#render_template_with_excess_variables (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3326
|
+
Rendering test/render_default.html.rb
|
3327
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3328
|
+
|
3329
|
+
|
3330
|
+
Processing TestController#render_needs_template_with_excess_variables (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3331
|
+
Rendering test/needs.html.rb
|
3332
|
+
|
3333
|
+
|
3334
|
+
Processing TestController#render_needs_template_with_excess_variables_and_ignoring_extras (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3335
|
+
Rendering test/needs.html.rb
|
3336
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3337
|
+
|
3338
|
+
|
3339
|
+
Processing TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3340
|
+
Rendering test/needs_subclass.html.rb
|
3341
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3342
|
+
|
3343
|
+
|
3344
|
+
Processing TestController#render_template_with_partial (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3345
|
+
Rendering test/render_partial.html.rb
|
3346
|
+
Rendered test/_erector (0.9ms)
|
3347
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3348
|
+
|
3349
|
+
|
3350
|
+
Processing TestController#render_erb_from_erector (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3351
|
+
Rendering test/erb_from_erector.html.rb
|
3352
|
+
Rendered test/_erb (0.3ms)
|
3353
|
+
Completed in 2ms (View: 1 | 200 OK [http://test.host/]
|
3354
|
+
|
3355
|
+
|
3356
|
+
Processing TestController#render_erector_from_erb (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3357
|
+
Rendering test/erector_from_erb.html.erb
|
3358
|
+
Rendered test/_erector (0.3ms)
|
3359
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3360
|
+
|
3361
|
+
|
3362
|
+
Processing TestController#render_erector_with_locals_from_erb (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3363
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3364
|
+
Rendered test/_partial_with_locals (1.2ms)
|
3365
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3366
|
+
|
3367
|
+
|
3368
|
+
Processing TestController#render_erector_with_locals_from_erb_defaulted (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3369
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3370
|
+
Rendered test/_partial_with_locals (0.6ms)
|
3371
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3372
|
+
|
3373
|
+
|
3374
|
+
Processing TestController#render_erector_with_locals_from_erb_override (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3375
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3376
|
+
Rendered test/_partial_with_locals (0.3ms)
|
3377
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3378
|
+
|
3379
|
+
|
3380
|
+
Processing TestController#render_erector_with_locals_from_erb_not_needed (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3381
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3382
|
+
|
3383
|
+
|
3384
|
+
Processing TestController#render_erector_partial_with_unneeded_controller_variables (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3385
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3386
|
+
Rendered test/_partial_with_locals (0.4ms)
|
3387
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3388
|
+
|
3389
|
+
|
3390
|
+
Processing TestController#render_erector_partial_without_controller_variables (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3391
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3392
|
+
Rendered test/_partial_with_locals (0.3ms)
|
3393
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3394
|
+
|
3395
|
+
|
3396
|
+
Processing TestController#render_default (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3397
|
+
Rendering test/render_default
|
3398
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3399
|
+
|
3400
|
+
|
3401
|
+
Processing TestController#render_with_needs (for 0.0.0.0 at 2013-02-08 07:28:00) [GET]
|
3402
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3403
|
+
|
3404
|
+
|
3405
|
+
Processing TestController#render_widget_with_implicit_assigns (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3406
|
+
Completed in 2ms (View: 0 | 200 OK [http://test.host/]
|
3407
|
+
|
3408
|
+
|
3409
|
+
Processing TestController#render_widget_with_explicit_assigns (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3410
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3411
|
+
|
3412
|
+
|
3413
|
+
Processing TestController#render_widget_class (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3414
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3415
|
+
|
3416
|
+
|
3417
|
+
Processing TestController#render_widget_instance (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3418
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3419
|
+
|
3420
|
+
|
3421
|
+
Processing TestController#render_widget_with_ignored_controller_variables (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3422
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
3423
|
+
|
3424
|
+
|
3425
|
+
Processing TestController#render_widget_with_extra_controller_variables (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3426
|
+
|
3427
|
+
|
3428
|
+
Processing TestController#render_with_content_method (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3429
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3430
|
+
|
3431
|
+
|
3432
|
+
Processing TestController#render_with_rails_options (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3433
|
+
Completed in 0ms (View: 0 | 500 Internal Server Error [http://test.host/]
|
3434
|
+
|
3435
|
+
|
3436
|
+
Processing TestController#render_template_with_implicit_assigns (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3437
|
+
Rendering test/implicit_assigns.html.rb
|
3438
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3439
|
+
|
3440
|
+
|
3441
|
+
Processing TestController#render_template_with_protected_instance_variable (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3442
|
+
Rendering test/protected_instance_variable.html.rb
|
3443
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3444
|
+
|
3445
|
+
|
3446
|
+
Processing TestController#render_bare_rb (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3447
|
+
Rendering test/bare.rb
|
3448
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3449
|
+
|
3450
|
+
|
3451
|
+
Processing TestController#render_template_with_excess_variables (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3452
|
+
Rendering test/render_default.html.rb
|
3453
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3454
|
+
|
3455
|
+
|
3456
|
+
Processing TestController#render_needs_template_with_excess_variables (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3457
|
+
Rendering test/needs.html.rb
|
3458
|
+
|
3459
|
+
|
3460
|
+
Processing TestController#render_needs_template_with_excess_variables_and_ignoring_extras (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3461
|
+
Rendering test/needs.html.rb
|
3462
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3463
|
+
|
3464
|
+
|
3465
|
+
Processing TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3466
|
+
Rendering test/needs_subclass.html.rb
|
3467
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3468
|
+
|
3469
|
+
|
3470
|
+
Processing TestController#render_template_with_partial (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3471
|
+
Rendering test/render_partial.html.rb
|
3472
|
+
Rendered test/_erector (1.4ms)
|
3473
|
+
Completed in 3ms (View: 3 | 200 OK [http://test.host/]
|
3474
|
+
|
3475
|
+
|
3476
|
+
Processing TestController#render_erb_from_erector (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3477
|
+
Rendering test/erb_from_erector.html.rb
|
3478
|
+
Rendered test/_erb (0.3ms)
|
3479
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3480
|
+
|
3481
|
+
|
3482
|
+
Processing TestController#render_erector_from_erb (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3483
|
+
Rendering test/erector_from_erb.html.erb
|
3484
|
+
Rendered test/_erector (0.4ms)
|
3485
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3486
|
+
|
3487
|
+
|
3488
|
+
Processing TestController#render_erector_with_locals_from_erb (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3489
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3490
|
+
Rendered test/_partial_with_locals (1.6ms)
|
3491
|
+
Completed in 3ms (View: 3 | 200 OK [http://test.host/]
|
3492
|
+
|
3493
|
+
|
3494
|
+
Processing TestController#render_erector_with_locals_from_erb_defaulted (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3495
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3496
|
+
Rendered test/_partial_with_locals (0.8ms)
|
3497
|
+
Completed in 2ms (View: 1 | 200 OK [http://test.host/]
|
3498
|
+
|
3499
|
+
|
3500
|
+
Processing TestController#render_erector_with_locals_from_erb_override (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3501
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3502
|
+
Rendered test/_partial_with_locals (0.4ms)
|
3503
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3504
|
+
|
3505
|
+
|
3506
|
+
Processing TestController#render_erector_with_locals_from_erb_not_needed (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3507
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3508
|
+
|
3509
|
+
|
3510
|
+
Processing TestController#render_erector_partial_with_unneeded_controller_variables (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3511
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3512
|
+
Rendered test/_partial_with_locals (0.4ms)
|
3513
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3514
|
+
|
3515
|
+
|
3516
|
+
Processing TestController#render_erector_partial_without_controller_variables (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3517
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3518
|
+
Rendered test/_partial_with_locals (0.3ms)
|
3519
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3520
|
+
|
3521
|
+
|
3522
|
+
Processing TestController#render_default (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3523
|
+
Rendering test/render_default
|
3524
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3525
|
+
|
3526
|
+
|
3527
|
+
Processing TestController#render_with_needs (for 0.0.0.0 at 2013-02-08 07:33:37) [GET]
|
3528
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
3529
|
+
|
3530
|
+
|
3531
|
+
Processing TestController#render_widget_with_implicit_assigns (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3532
|
+
Completed in 2ms (View: 0 | 200 OK [http://test.host/]
|
3533
|
+
|
3534
|
+
|
3535
|
+
Processing TestController#render_widget_with_explicit_assigns (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3536
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3537
|
+
|
3538
|
+
|
3539
|
+
Processing TestController#render_widget_class (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3540
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3541
|
+
|
3542
|
+
|
3543
|
+
Processing TestController#render_widget_instance (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3544
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3545
|
+
|
3546
|
+
|
3547
|
+
Processing TestController#render_widget_with_ignored_controller_variables (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3548
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
3549
|
+
|
3550
|
+
|
3551
|
+
Processing TestController#render_widget_with_extra_controller_variables (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3552
|
+
|
3553
|
+
|
3554
|
+
Processing TestController#render_with_content_method (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3555
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3556
|
+
|
3557
|
+
|
3558
|
+
Processing TestController#render_with_rails_options (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3559
|
+
Completed in 0ms (View: 0 | 500 Internal Server Error [http://test.host/]
|
3560
|
+
|
3561
|
+
|
3562
|
+
Processing TestController#render_template_with_implicit_assigns (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3563
|
+
Rendering test/implicit_assigns.html.rb
|
3564
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3565
|
+
|
3566
|
+
|
3567
|
+
Processing TestController#render_template_with_protected_instance_variable (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3568
|
+
Rendering test/protected_instance_variable.html.rb
|
3569
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3570
|
+
|
3571
|
+
|
3572
|
+
Processing TestController#render_bare_rb (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3573
|
+
Rendering test/bare.rb
|
3574
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3575
|
+
|
3576
|
+
|
3577
|
+
Processing TestController#render_template_with_excess_variables (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3578
|
+
Rendering test/render_default.html.rb
|
3579
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3580
|
+
|
3581
|
+
|
3582
|
+
Processing TestController#render_needs_template_with_excess_variables (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3583
|
+
Rendering test/needs.html.rb
|
3584
|
+
|
3585
|
+
|
3586
|
+
Processing TestController#render_needs_template_with_excess_variables_and_ignoring_extras (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3587
|
+
Rendering test/needs.html.rb
|
3588
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3589
|
+
|
3590
|
+
|
3591
|
+
Processing TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3592
|
+
Rendering test/needs_subclass.html.rb
|
3593
|
+
Completed in 2ms (View: 1 | 200 OK [http://test.host/]
|
3594
|
+
|
3595
|
+
|
3596
|
+
Processing TestController#render_template_with_partial (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3597
|
+
Rendering test/render_partial.html.rb
|
3598
|
+
Rendered test/_erector (1.3ms)
|
3599
|
+
Completed in 3ms (View: 3 | 200 OK [http://test.host/]
|
3600
|
+
|
3601
|
+
|
3602
|
+
Processing TestController#render_erb_from_erector (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3603
|
+
Rendering test/erb_from_erector.html.rb
|
3604
|
+
Rendered test/_erb (0.3ms)
|
3605
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3606
|
+
|
3607
|
+
|
3608
|
+
Processing TestController#render_erector_from_erb (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3609
|
+
Rendering test/erector_from_erb.html.erb
|
3610
|
+
Rendered test/_erector (0.4ms)
|
3611
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3612
|
+
|
3613
|
+
|
3614
|
+
Processing TestController#render_erector_with_locals_from_erb (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3615
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3616
|
+
Rendered test/_partial_with_locals (1.1ms)
|
3617
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3618
|
+
|
3619
|
+
|
3620
|
+
Processing TestController#render_erector_with_locals_from_erb_defaulted (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3621
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3622
|
+
Rendered test/_partial_with_locals (0.5ms)
|
3623
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3624
|
+
|
3625
|
+
|
3626
|
+
Processing TestController#render_erector_with_locals_from_erb_override (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3627
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3628
|
+
Rendered test/_partial_with_locals (0.3ms)
|
3629
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3630
|
+
|
3631
|
+
|
3632
|
+
Processing TestController#render_erector_with_locals_from_erb_not_needed (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3633
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3634
|
+
|
3635
|
+
|
3636
|
+
Processing TestController#render_erector_partial_with_unneeded_controller_variables (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3637
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3638
|
+
Rendered test/_partial_with_locals (0.5ms)
|
3639
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3640
|
+
|
3641
|
+
|
3642
|
+
Processing TestController#render_erector_partial_without_controller_variables (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3643
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3644
|
+
Rendered test/_partial_with_locals (0.3ms)
|
3645
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3646
|
+
|
3647
|
+
|
3648
|
+
Processing TestController#render_default (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3649
|
+
Rendering test/render_default
|
3650
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3651
|
+
|
3652
|
+
|
3653
|
+
Processing TestController#render_with_needs (for 0.0.0.0 at 2013-02-08 07:38:39) [GET]
|
3654
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3655
|
+
|
3656
|
+
|
3657
|
+
Processing TestController#render_widget_with_implicit_assigns (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3658
|
+
Completed in 2ms (View: 0 | 200 OK [http://test.host/]
|
3659
|
+
|
3660
|
+
|
3661
|
+
Processing TestController#render_widget_with_explicit_assigns (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3662
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3663
|
+
|
3664
|
+
|
3665
|
+
Processing TestController#render_widget_class (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3666
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3667
|
+
|
3668
|
+
|
3669
|
+
Processing TestController#render_widget_instance (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3670
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3671
|
+
|
3672
|
+
|
3673
|
+
Processing TestController#render_widget_with_ignored_controller_variables (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3674
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
3675
|
+
|
3676
|
+
|
3677
|
+
Processing TestController#render_widget_with_extra_controller_variables (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3678
|
+
|
3679
|
+
|
3680
|
+
Processing TestController#render_with_content_method (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3681
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3682
|
+
|
3683
|
+
|
3684
|
+
Processing TestController#render_with_rails_options (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3685
|
+
Completed in 0ms (View: 0 | 500 Internal Server Error [http://test.host/]
|
3686
|
+
|
3687
|
+
|
3688
|
+
Processing TestController#render_template_with_implicit_assigns (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3689
|
+
Rendering test/implicit_assigns.html.rb
|
3690
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3691
|
+
|
3692
|
+
|
3693
|
+
Processing TestController#render_template_with_protected_instance_variable (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3694
|
+
Rendering test/protected_instance_variable.html.rb
|
3695
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3696
|
+
|
3697
|
+
|
3698
|
+
Processing TestController#render_bare_rb (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3699
|
+
Rendering test/bare.rb
|
3700
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3701
|
+
|
3702
|
+
|
3703
|
+
Processing TestController#render_template_with_excess_variables (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3704
|
+
Rendering test/render_default.html.rb
|
3705
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3706
|
+
|
3707
|
+
|
3708
|
+
Processing TestController#render_needs_template_with_excess_variables (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3709
|
+
Rendering test/needs.html.rb
|
3710
|
+
|
3711
|
+
|
3712
|
+
Processing TestController#render_needs_template_with_excess_variables_and_ignoring_extras (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3713
|
+
Rendering test/needs.html.rb
|
3714
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3715
|
+
|
3716
|
+
|
3717
|
+
Processing TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3718
|
+
Rendering test/needs_subclass.html.rb
|
3719
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3720
|
+
|
3721
|
+
|
3722
|
+
Processing TestController#render_template_with_partial (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3723
|
+
Rendering test/render_partial.html.rb
|
3724
|
+
Rendered test/_erector (1.0ms)
|
3725
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3726
|
+
|
3727
|
+
|
3728
|
+
Processing TestController#render_erb_from_erector (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3729
|
+
Rendering test/erb_from_erector.html.rb
|
3730
|
+
Rendered test/_erb (0.3ms)
|
3731
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3732
|
+
|
3733
|
+
|
3734
|
+
Processing TestController#render_erector_from_erb (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3735
|
+
Rendering test/erector_from_erb.html.erb
|
3736
|
+
Rendered test/_erector (0.3ms)
|
3737
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3738
|
+
|
3739
|
+
|
3740
|
+
Processing TestController#render_erector_with_locals_from_erb (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3741
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3742
|
+
Rendered test/_partial_with_locals (1.0ms)
|
3743
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3744
|
+
|
3745
|
+
|
3746
|
+
Processing TestController#render_erector_with_locals_from_erb_defaulted (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3747
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3748
|
+
Rendered test/_partial_with_locals (0.4ms)
|
3749
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3750
|
+
|
3751
|
+
|
3752
|
+
Processing TestController#render_erector_with_locals_from_erb_override (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3753
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3754
|
+
Rendered test/_partial_with_locals (0.3ms)
|
3755
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3756
|
+
|
3757
|
+
|
3758
|
+
Processing TestController#render_erector_with_locals_from_erb_not_needed (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3759
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3760
|
+
|
3761
|
+
|
3762
|
+
Processing TestController#render_erector_partial_with_unneeded_controller_variables (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3763
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3764
|
+
Rendered test/_partial_with_locals (0.4ms)
|
3765
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3766
|
+
|
3767
|
+
|
3768
|
+
Processing TestController#render_erector_partial_without_controller_variables (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3769
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3770
|
+
Rendered test/_partial_with_locals (0.6ms)
|
3771
|
+
Completed in 4ms (View: 4 | 200 OK [http://test.host/]
|
3772
|
+
|
3773
|
+
|
3774
|
+
Processing TestController#render_default (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3775
|
+
Rendering test/render_default
|
3776
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3777
|
+
|
3778
|
+
|
3779
|
+
Processing TestController#render_with_needs (for 0.0.0.0 at 2013-02-08 07:41:50) [GET]
|
3780
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
3781
|
+
|
3782
|
+
|
3783
|
+
Processing TestController#render_widget_with_implicit_assigns (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3784
|
+
Completed in 2ms (View: 0 | 200 OK [http://test.host/]
|
3785
|
+
|
3786
|
+
|
3787
|
+
Processing TestController#render_widget_with_explicit_assigns (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3788
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3789
|
+
|
3790
|
+
|
3791
|
+
Processing TestController#render_widget_class (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3792
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3793
|
+
|
3794
|
+
|
3795
|
+
Processing TestController#render_widget_instance (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3796
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3797
|
+
|
3798
|
+
|
3799
|
+
Processing TestController#render_widget_with_ignored_controller_variables (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3800
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3801
|
+
|
3802
|
+
|
3803
|
+
Processing TestController#render_widget_with_extra_controller_variables (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3804
|
+
|
3805
|
+
|
3806
|
+
Processing TestController#render_with_content_method (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3807
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3808
|
+
|
3809
|
+
|
3810
|
+
Processing TestController#render_with_rails_options (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3811
|
+
Completed in 0ms (View: 0 | 500 Internal Server Error [http://test.host/]
|
3812
|
+
|
3813
|
+
|
3814
|
+
Processing TestController#render_template_with_implicit_assigns (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3815
|
+
Rendering test/implicit_assigns.html.rb
|
3816
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3817
|
+
|
3818
|
+
|
3819
|
+
Processing TestController#render_template_with_protected_instance_variable (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3820
|
+
Rendering test/protected_instance_variable.html.rb
|
3821
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3822
|
+
|
3823
|
+
|
3824
|
+
Processing TestController#render_bare_rb (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3825
|
+
Rendering test/bare.rb
|
3826
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3827
|
+
|
3828
|
+
|
3829
|
+
Processing TestController#render_template_with_excess_variables (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3830
|
+
Rendering test/render_default.html.rb
|
3831
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3832
|
+
|
3833
|
+
|
3834
|
+
Processing TestController#render_needs_template_with_excess_variables (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3835
|
+
Rendering test/needs.html.rb
|
3836
|
+
|
3837
|
+
|
3838
|
+
Processing TestController#render_needs_template_with_excess_variables_and_ignoring_extras (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3839
|
+
Rendering test/needs.html.rb
|
3840
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3841
|
+
|
3842
|
+
|
3843
|
+
Processing TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3844
|
+
Rendering test/needs_subclass.html.rb
|
3845
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3846
|
+
|
3847
|
+
|
3848
|
+
Processing TestController#render_template_with_partial (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3849
|
+
Rendering test/render_partial.html.rb
|
3850
|
+
Rendered test/_erector (1.0ms)
|
3851
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3852
|
+
|
3853
|
+
|
3854
|
+
Processing TestController#render_erb_from_erector (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3855
|
+
Rendering test/erb_from_erector.html.rb
|
3856
|
+
Rendered test/_erb (0.3ms)
|
3857
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3858
|
+
|
3859
|
+
|
3860
|
+
Processing TestController#render_erector_from_erb (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3861
|
+
Rendering test/erector_from_erb.html.erb
|
3862
|
+
Rendered test/_erector (0.3ms)
|
3863
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3864
|
+
|
3865
|
+
|
3866
|
+
Processing TestController#render_erector_with_locals_from_erb (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3867
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3868
|
+
Rendered test/_partial_with_locals (1.2ms)
|
3869
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3870
|
+
|
3871
|
+
|
3872
|
+
Processing TestController#render_erector_with_locals_from_erb_defaulted (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3873
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3874
|
+
Rendered test/_partial_with_locals (0.4ms)
|
3875
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3876
|
+
|
3877
|
+
|
3878
|
+
Processing TestController#render_erector_with_locals_from_erb_override (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3879
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3880
|
+
Rendered test/_partial_with_locals (0.3ms)
|
3881
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3882
|
+
|
3883
|
+
|
3884
|
+
Processing TestController#render_erector_with_locals_from_erb_not_needed (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3885
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3886
|
+
|
3887
|
+
|
3888
|
+
Processing TestController#render_erector_partial_with_unneeded_controller_variables (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3889
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3890
|
+
Rendered test/_partial_with_locals (0.4ms)
|
3891
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3892
|
+
|
3893
|
+
|
3894
|
+
Processing TestController#render_erector_partial_without_controller_variables (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3895
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3896
|
+
Rendered test/_partial_with_locals (0.4ms)
|
3897
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3898
|
+
|
3899
|
+
|
3900
|
+
Processing TestController#render_default (for 0.0.0.0 at 2013-02-08 07:51:31) [GET]
|
3901
|
+
Rendering test/render_default
|
3902
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3903
|
+
|
3904
|
+
|
3905
|
+
Processing TestController#render_with_needs (for 0.0.0.0 at 2013-02-08 07:51:32) [GET]
|
3906
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3907
|
+
|
3908
|
+
|
3909
|
+
Processing TestController#render_widget_with_implicit_assigns (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3910
|
+
Completed in 2ms (View: 0 | 200 OK [http://test.host/]
|
3911
|
+
|
3912
|
+
|
3913
|
+
Processing TestController#render_widget_with_explicit_assigns (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3914
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
3915
|
+
|
3916
|
+
|
3917
|
+
Processing TestController#render_widget_class (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3918
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
3919
|
+
|
3920
|
+
|
3921
|
+
Processing TestController#render_widget_instance (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3922
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3923
|
+
|
3924
|
+
|
3925
|
+
Processing TestController#render_widget_with_ignored_controller_variables (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3926
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|
3927
|
+
|
3928
|
+
|
3929
|
+
Processing TestController#render_widget_with_extra_controller_variables (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3930
|
+
|
3931
|
+
|
3932
|
+
Processing TestController#render_with_content_method (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3933
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/]
|
3934
|
+
|
3935
|
+
|
3936
|
+
Processing TestController#render_with_rails_options (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3937
|
+
Completed in 0ms (View: 0 | 500 Internal Server Error [http://test.host/]
|
3938
|
+
|
3939
|
+
|
3940
|
+
Processing TestController#render_template_with_implicit_assigns (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3941
|
+
Rendering test/implicit_assigns.html.rb
|
3942
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3943
|
+
|
3944
|
+
|
3945
|
+
Processing TestController#render_template_with_protected_instance_variable (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3946
|
+
Rendering test/protected_instance_variable.html.rb
|
3947
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3948
|
+
|
3949
|
+
|
3950
|
+
Processing TestController#render_bare_rb (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3951
|
+
Rendering test/bare.rb
|
3952
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3953
|
+
|
3954
|
+
|
3955
|
+
Processing TestController#render_template_with_excess_variables (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3956
|
+
Rendering test/render_default.html.rb
|
3957
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3958
|
+
|
3959
|
+
|
3960
|
+
Processing TestController#render_needs_template_with_excess_variables (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3961
|
+
Rendering test/needs.html.rb
|
3962
|
+
|
3963
|
+
|
3964
|
+
Processing TestController#render_needs_template_with_excess_variables_and_ignoring_extras (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3965
|
+
Rendering test/needs.html.rb
|
3966
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
3967
|
+
|
3968
|
+
|
3969
|
+
Processing TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3970
|
+
Rendering test/needs_subclass.html.rb
|
3971
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3972
|
+
|
3973
|
+
|
3974
|
+
Processing TestController#render_template_with_partial (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3975
|
+
Rendering test/render_partial.html.rb
|
3976
|
+
Rendered test/_erector (1.3ms)
|
3977
|
+
Completed in 4ms (View: 4 | 200 OK [http://test.host/]
|
3978
|
+
|
3979
|
+
|
3980
|
+
Processing TestController#render_erb_from_erector (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3981
|
+
Rendering test/erb_from_erector.html.rb
|
3982
|
+
Rendered test/_erb (0.4ms)
|
3983
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3984
|
+
|
3985
|
+
|
3986
|
+
Processing TestController#render_erector_from_erb (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3987
|
+
Rendering test/erector_from_erb.html.erb
|
3988
|
+
Rendered test/_erector (0.6ms)
|
3989
|
+
Completed in 2ms (View: 2 | 200 OK [http://test.host/]
|
3990
|
+
|
3991
|
+
|
3992
|
+
Processing TestController#render_erector_with_locals_from_erb (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3993
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
3994
|
+
Rendered test/_partial_with_locals (1.6ms)
|
3995
|
+
Completed in 3ms (View: 3 | 200 OK [http://test.host/]
|
3996
|
+
|
3997
|
+
|
3998
|
+
Processing TestController#render_erector_with_locals_from_erb_defaulted (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
3999
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
4000
|
+
Rendered test/_partial_with_locals (0.6ms)
|
4001
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
4002
|
+
|
4003
|
+
|
4004
|
+
Processing TestController#render_erector_with_locals_from_erb_override (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
4005
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
4006
|
+
Rendered test/_partial_with_locals (0.4ms)
|
4007
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
4008
|
+
|
4009
|
+
|
4010
|
+
Processing TestController#render_erector_with_locals_from_erb_not_needed (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
4011
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
4012
|
+
|
4013
|
+
|
4014
|
+
Processing TestController#render_erector_partial_with_unneeded_controller_variables (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
4015
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
4016
|
+
Rendered test/_partial_with_locals (0.5ms)
|
4017
|
+
Completed in 2ms (View: 1 | 200 OK [http://test.host/]
|
4018
|
+
|
4019
|
+
|
4020
|
+
Processing TestController#render_erector_partial_without_controller_variables (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
4021
|
+
Rendering test/erector_with_locals_from_erb.html.erb
|
4022
|
+
Rendered test/_partial_with_locals (0.4ms)
|
4023
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
4024
|
+
|
4025
|
+
|
4026
|
+
Processing TestController#render_default (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
4027
|
+
Rendering test/render_default
|
4028
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/]
|
4029
|
+
|
4030
|
+
|
4031
|
+
Processing TestController#render_with_needs (for 0.0.0.0 at 2013-02-08 07:54:50) [GET]
|
4032
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/]
|