padrino-helpers 0.12.9 → 0.13.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -13
- data/lib/padrino-helpers.rb +2 -2
- data/lib/padrino-helpers/asset_tag_helpers.rb +18 -26
- data/lib/padrino-helpers/form_builder/abstract_form_builder.rb +3 -56
- data/lib/padrino-helpers/form_builder/standard_form_builder.rb +1 -1
- data/lib/padrino-helpers/form_helpers.rb +11 -227
- data/lib/padrino-helpers/form_helpers/options.rb +5 -7
- data/lib/padrino-helpers/output_helpers.rb +1 -1
- data/lib/padrino-helpers/output_helpers/abstract_handler.rb +1 -1
- data/lib/padrino-helpers/output_helpers/erb_handler.rb +1 -2
- data/lib/padrino-helpers/render_helpers.rb +2 -23
- data/lib/padrino-helpers/tag_helpers.rb +1 -14
- data/lib/padrino/rendering.rb +4 -56
- data/lib/padrino/rendering/erb_template.rb +0 -12
- data/lib/padrino/rendering/erubis_template.rb +1 -1
- data/padrino-helpers.gemspec +1 -1
- data/test/fixtures/markup_app/views/form_for.erb +0 -28
- data/test/fixtures/markup_app/views/form_for.haml +0 -22
- data/test/fixtures/markup_app/views/form_for.slim +0 -21
- data/test/fixtures/markup_app/views/form_tag.erb +0 -21
- data/test/fixtures/markup_app/views/form_tag.haml +0 -14
- data/test/fixtures/markup_app/views/form_tag.slim +0 -14
- data/test/helper.rb +17 -6
- data/test/test_asset_tag_helpers.rb +92 -110
- data/test/test_form_builder.rb +450 -691
- data/test/test_form_helpers.rb +457 -770
- data/test/test_format_helpers.rb +37 -17
- data/test/test_helpers.rb +0 -8
- data/test/test_output_helpers.rb +72 -72
- data/test/test_render_helpers.rb +100 -142
- data/test/test_rendering.rb +1 -58
- data/test/test_tag_helpers.rb +39 -41
- metadata +118 -34
- data/lib/padrino-helpers/form_builder/deprecated_builder_methods.rb +0 -79
data/test/test_rendering.rb
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
require File.expand_path(File.dirname(__FILE__) + '/helper')
|
2
2
|
require 'slim'
|
3
|
-
require 'liquid'
|
4
3
|
|
5
4
|
describe "Rendering" do
|
6
5
|
def setup
|
@@ -88,26 +87,6 @@ describe "Rendering" do
|
|
88
87
|
assert_equal "js file", body
|
89
88
|
end
|
90
89
|
|
91
|
-
it 'should set and restore layout in controllers' do
|
92
|
-
create_layout :boo, "boo is a <%= yield %>"
|
93
|
-
create_layout :moo, "moo is a <%= yield %>"
|
94
|
-
create_view :foo, "liquid file", :format => :liquid
|
95
|
-
mock_app do
|
96
|
-
layout :boo
|
97
|
-
controller :moo do
|
98
|
-
layout :moo
|
99
|
-
get('/liquid') { render :foo }
|
100
|
-
end
|
101
|
-
controller :boo do
|
102
|
-
get('/liquid') { render :foo }
|
103
|
-
end
|
104
|
-
end
|
105
|
-
get "/moo/liquid"
|
106
|
-
assert_equal "moo is a liquid file", body
|
107
|
-
get "/boo/liquid"
|
108
|
-
assert_equal "boo is a liquid file", body
|
109
|
-
end
|
110
|
-
|
111
90
|
it 'should use correct layout for each format' do
|
112
91
|
create_layout :application, "this is an <%= yield %>"
|
113
92
|
create_layout :application, "document start <%= yield %> end", :format => :xml
|
@@ -137,32 +116,6 @@ describe "Rendering" do
|
|
137
116
|
assert_equal "html file", body
|
138
117
|
end
|
139
118
|
|
140
|
-
it 'should find proper templates when content_type is set by string' do
|
141
|
-
create_layout :error, "layout<%= yield %>"
|
142
|
-
create_view :e404, "404 file"
|
143
|
-
|
144
|
-
mock_app do
|
145
|
-
not_found do
|
146
|
-
content_type 'text/html'
|
147
|
-
render 'e404', :layout => :error
|
148
|
-
end
|
149
|
-
end
|
150
|
-
get '/missing'
|
151
|
-
assert_equal 'layout404 file', body
|
152
|
-
end
|
153
|
-
|
154
|
-
it 'should work with set content type not contained in rack-types' do
|
155
|
-
create_view "index.md.erb", "Hello"
|
156
|
-
mock_app do
|
157
|
-
get("/") {
|
158
|
-
content_type "text/x-markdown; charset=UTF-8"
|
159
|
-
render "index.erb", { :layout => nil }
|
160
|
-
}
|
161
|
-
end
|
162
|
-
get "/"
|
163
|
-
assert_equal "Hello", body
|
164
|
-
end
|
165
|
-
|
166
119
|
it 'should not use html file when DEFAULT_RENDERING_OPTIONS[:strict_format] == true' do
|
167
120
|
create_layout :foo, "html file", :format => :html
|
168
121
|
|
@@ -689,7 +642,7 @@ describe "Rendering" do
|
|
689
642
|
class Application < Sinatra::Base
|
690
643
|
register Padrino::Rendering
|
691
644
|
get '/' do
|
692
|
-
render :post, :views => File.dirname(__FILE__)+'/fixtures/apps/views/blog'
|
645
|
+
render :post, :views => File.dirname(__FILE__)+'/fixtures/apps/views/blog'
|
693
646
|
end
|
694
647
|
end
|
695
648
|
@app = Application.new
|
@@ -750,14 +703,4 @@ describe "Rendering" do
|
|
750
703
|
assert_equal "application/xml;charset=utf-8", response['Content-Type']
|
751
704
|
end
|
752
705
|
end
|
753
|
-
|
754
|
-
describe 'rendering with helpers that use render' do
|
755
|
-
%W{erb haml slim}.each do |engine|
|
756
|
-
it "should work with #{engine}" do
|
757
|
-
@app = RenderDemo
|
758
|
-
get "/double_dive_#{engine}"
|
759
|
-
assert_response_has_tag '.outer .wrapper form .inner .core'
|
760
|
-
end
|
761
|
-
end
|
762
|
-
end
|
763
706
|
end
|
data/test/test_tag_helpers.rb
CHANGED
@@ -8,29 +8,27 @@ describe "TagHelpers" do
|
|
8
8
|
|
9
9
|
describe 'for #tag method' do
|
10
10
|
it 'should support tags with no content no attributes' do
|
11
|
-
|
11
|
+
assert_has_tag(:br) { tag(:br) }
|
12
12
|
end
|
13
13
|
|
14
14
|
it 'should support tags with no content with attributes' do
|
15
15
|
actual_html = tag(:br, :style => 'clear:both', :class => 'yellow')
|
16
|
-
|
16
|
+
assert_has_tag(:br, :class => 'yellow', :style=>'clear:both') { actual_html }
|
17
17
|
end
|
18
18
|
|
19
19
|
it 'should support selected attribute by using "selected" if true' do
|
20
20
|
actual_html = tag(:option, :selected => true)
|
21
|
-
|
22
|
-
actual_html = content_tag(:select, actual_html)
|
23
|
-
assert_html_has_tag(actual_html, 'option', :selected => 'selected')
|
21
|
+
assert_has_tag('option', :selected => 'selected') { actual_html }
|
24
22
|
end
|
25
23
|
|
26
24
|
it 'should support data attributes' do
|
27
25
|
actual_html = tag(:a, :data => { :remote => true, :method => 'post'})
|
28
|
-
|
26
|
+
assert_has_tag(:a, 'data-remote' => 'true', 'data-method' => 'post') { actual_html }
|
29
27
|
end
|
30
28
|
|
31
29
|
it 'should support nested attributes' do
|
32
30
|
actual_html = tag(:div, :data => {:dojo => {:type => 'dijit.form.TextBox', :props => 'readOnly: true'}})
|
33
|
-
|
31
|
+
assert_has_tag(:div, 'data-dojo-type' => 'dijit.form.TextBox', 'data-dojo-props' => 'readOnly: true') { actual_html }
|
34
32
|
end
|
35
33
|
|
36
34
|
it 'should support open tags' do
|
@@ -47,87 +45,87 @@ describe "TagHelpers" do
|
|
47
45
|
describe 'for #content_tag method' do
|
48
46
|
it 'should support tags with content as parameter' do
|
49
47
|
actual_html = content_tag(:p, "Demo", :class => 'large', :id => 'thing')
|
50
|
-
|
48
|
+
assert_has_tag('p.large#thing', :content => "Demo") { actual_html }
|
51
49
|
end
|
52
50
|
|
53
51
|
it 'should support tags with content as block' do
|
54
52
|
actual_html = content_tag(:p, :class => 'large', :id => 'star') { "Demo" }
|
55
|
-
|
53
|
+
assert_has_tag('p.large#star', :content => "Demo") { actual_html }
|
56
54
|
end
|
57
55
|
|
58
56
|
it 'should escape non-html-safe content' do
|
59
57
|
actual_html = content_tag(:p, :class => 'large', :id => 'star') { "<>" }
|
60
|
-
|
58
|
+
assert_has_tag('p.large#star') { actual_html }
|
61
59
|
assert_match('<>', actual_html)
|
62
60
|
end
|
63
61
|
|
64
62
|
it 'should not escape html-safe content' do
|
65
63
|
actual_html = content_tag(:p, :class => 'large', :id => 'star') { "<>" }
|
66
|
-
|
64
|
+
assert_has_tag('p.large#star', :content => "<>") { actual_html }
|
67
65
|
end
|
68
66
|
|
69
67
|
it 'should convert to a string if the content is not a string' do
|
70
68
|
actual_html = content_tag(:p, 97)
|
71
|
-
|
69
|
+
assert_has_tag('p', :content => "97") { actual_html }
|
72
70
|
end
|
73
71
|
|
74
72
|
it 'should support tags with erb' do
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
73
|
+
visit '/erb/content_tag'
|
74
|
+
assert_have_selector :p, :content => "Test 1", :class => 'test', :id => 'test1'
|
75
|
+
assert_have_selector :p, :content => "Test 2"
|
76
|
+
assert_have_selector :p, :content => "Test 3"
|
77
|
+
assert_have_selector :p, :content => "Test 4"
|
78
|
+
assert_have_selector :p, :content => "one"
|
79
|
+
assert_have_selector :p, :content => "two"
|
80
|
+
assert_have_no_selector :p, :content => "failed"
|
83
81
|
end
|
84
82
|
|
85
83
|
it 'should support tags with haml' do
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
84
|
+
visit '/haml/content_tag'
|
85
|
+
assert_have_selector :p, :content => "Test 1", :class => 'test', :id => 'test1'
|
86
|
+
assert_have_selector :p, :content => "Test 2"
|
87
|
+
assert_have_selector :p, :content => "Test 3", :class => 'test', :id => 'test3'
|
88
|
+
assert_have_selector :p, :content => "Test 4"
|
89
|
+
assert_have_selector :p, :content => "one"
|
90
|
+
assert_have_selector :p, :content => "two"
|
91
|
+
assert_have_no_selector :p, :content => "failed"
|
94
92
|
end
|
95
93
|
|
96
94
|
it 'should support tags with slim' do
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
95
|
+
visit '/slim/content_tag'
|
96
|
+
assert_have_selector :p, :content => "Test 1", :class => 'test', :id => 'test1'
|
97
|
+
assert_have_selector :p, :content => "Test 2"
|
98
|
+
assert_have_selector :p, :content => "Test 3", :class => 'test', :id => 'test3'
|
99
|
+
assert_have_selector :p, :content => "Test 4"
|
100
|
+
assert_have_selector :p, :content => "one"
|
101
|
+
assert_have_selector :p, :content => "two"
|
102
|
+
assert_have_no_selector :p, :content => "failed"
|
105
103
|
end
|
106
104
|
end
|
107
105
|
|
108
106
|
describe 'for #input_tag method' do
|
109
107
|
it 'should support field with type' do
|
110
|
-
|
108
|
+
assert_has_tag('input[type=text]') { input_tag(:text) }
|
111
109
|
end
|
112
110
|
|
113
111
|
it 'should support field with type and options' do
|
114
112
|
actual_html = input_tag(:text, :class => "first", :id => 'texter')
|
115
|
-
|
113
|
+
assert_has_tag('input.first#texter[type=text]') { actual_html }
|
116
114
|
end
|
117
115
|
|
118
116
|
it 'should support checked attribute by using "checked" if true' do
|
119
117
|
actual_html = input_tag(:checkbox, :checked => true)
|
120
|
-
|
118
|
+
assert_has_tag('input[type=checkbox]', :checked => 'checked') { actual_html }
|
121
119
|
end
|
122
120
|
|
123
121
|
it 'should remove checked attribute if false' do
|
124
122
|
actual_html = input_tag(:checkbox, :checked => false)
|
125
|
-
|
123
|
+
assert_has_no_tag('input[type=checkbox][checked=false]') { actual_html }
|
126
124
|
end
|
127
125
|
|
128
126
|
it 'should support disabled attribute by using "disabled" if true' do
|
129
127
|
actual_html = input_tag(:checkbox, :disabled => true)
|
130
|
-
|
128
|
+
assert_has_tag('input[type=checkbox]', :disabled => 'disabled') { actual_html }
|
131
129
|
end
|
132
130
|
end
|
133
131
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: padrino-helpers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.0.beta1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Padrino Team
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date:
|
14
|
+
date: 2015-02-22 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: padrino-support
|
@@ -19,62 +19,48 @@ dependencies:
|
|
19
19
|
requirements:
|
20
20
|
- - '='
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 0.
|
22
|
+
version: 0.13.0.beta1
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
27
|
- - '='
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.13.0.beta1
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: tilt
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
33
33
|
requirements:
|
34
|
-
- -
|
35
|
-
- !ruby/object:Gem::Version
|
36
|
-
version: !binary |-
|
37
|
-
MS40LjE=
|
38
|
-
- - <
|
34
|
+
- - ~>
|
39
35
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
41
|
-
Mw==
|
36
|
+
version: 1.4.1
|
42
37
|
type: :runtime
|
43
38
|
prerelease: false
|
44
39
|
version_requirements: !ruby/object:Gem::Requirement
|
45
40
|
requirements:
|
46
|
-
- -
|
47
|
-
- !ruby/object:Gem::Version
|
48
|
-
version: !binary |-
|
49
|
-
MS40LjE=
|
50
|
-
- - <
|
41
|
+
- - ~>
|
51
42
|
- !ruby/object:Gem::Version
|
52
|
-
version:
|
53
|
-
Mw==
|
43
|
+
version: 1.4.1
|
54
44
|
- !ruby/object:Gem::Dependency
|
55
45
|
name: i18n
|
56
46
|
requirement: !ruby/object:Gem::Requirement
|
57
47
|
requirements:
|
58
48
|
- - ~>
|
59
49
|
- !ruby/object:Gem::Version
|
60
|
-
version:
|
61
|
-
|
62
|
-
- - ! '>='
|
50
|
+
version: '0.6'
|
51
|
+
- - '>='
|
63
52
|
- !ruby/object:Gem::Version
|
64
|
-
version:
|
65
|
-
MC42Ljc=
|
53
|
+
version: 0.6.7
|
66
54
|
type: :runtime
|
67
55
|
prerelease: false
|
68
56
|
version_requirements: !ruby/object:Gem::Requirement
|
69
57
|
requirements:
|
70
58
|
- - ~>
|
71
59
|
- !ruby/object:Gem::Version
|
72
|
-
version:
|
73
|
-
|
74
|
-
- - ! '>='
|
60
|
+
version: '0.6'
|
61
|
+
- - '>='
|
75
62
|
- !ruby/object:Gem::Version
|
76
|
-
version:
|
77
|
-
MC42Ljc=
|
63
|
+
version: 0.6.7
|
78
64
|
description: Tag helpers, asset helpers, form helpers, form builders and many more
|
79
65
|
helpers for padrino
|
80
66
|
email: padrinorb@gmail.com
|
@@ -92,7 +78,6 @@ files:
|
|
92
78
|
- lib/padrino-helpers.rb
|
93
79
|
- lib/padrino-helpers/asset_tag_helpers.rb
|
94
80
|
- lib/padrino-helpers/form_builder/abstract_form_builder.rb
|
95
|
-
- lib/padrino-helpers/form_builder/deprecated_builder_methods.rb
|
96
81
|
- lib/padrino-helpers/form_builder/standard_form_builder.rb
|
97
82
|
- lib/padrino-helpers/form_helpers.rb
|
98
83
|
- lib/padrino-helpers/form_helpers/errors.rb
|
@@ -244,18 +229,117 @@ require_paths:
|
|
244
229
|
- lib
|
245
230
|
required_ruby_version: !ruby/object:Gem::Requirement
|
246
231
|
requirements:
|
247
|
-
- -
|
232
|
+
- - '>='
|
248
233
|
- !ruby/object:Gem::Version
|
249
234
|
version: '0'
|
250
235
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
251
236
|
requirements:
|
252
|
-
- -
|
237
|
+
- - '>'
|
253
238
|
- !ruby/object:Gem::Version
|
254
|
-
version: 1.3.
|
239
|
+
version: 1.3.1
|
255
240
|
requirements: []
|
256
241
|
rubyforge_project: padrino-helpers
|
257
|
-
rubygems_version: 2.6
|
242
|
+
rubygems_version: 2.0.6
|
258
243
|
signing_key:
|
259
244
|
specification_version: 4
|
260
245
|
summary: Helpers for padrino
|
261
|
-
test_files:
|
246
|
+
test_files:
|
247
|
+
- test/fixtures/apps/.components
|
248
|
+
- test/fixtures/apps/.gitignore
|
249
|
+
- test/fixtures/apps/render.rb
|
250
|
+
- test/fixtures/apps/views/article/comment/show.slim
|
251
|
+
- test/fixtures/apps/views/blog/post.erb
|
252
|
+
- test/fixtures/apps/views/layouts/specific.erb
|
253
|
+
- test/fixtures/apps/views/test/post.erb
|
254
|
+
- test/fixtures/layouts/layout.erb
|
255
|
+
- test/fixtures/markup_app/app.rb
|
256
|
+
- test/fixtures/markup_app/views/button_to.erb
|
257
|
+
- test/fixtures/markup_app/views/button_to.haml
|
258
|
+
- test/fixtures/markup_app/views/button_to.slim
|
259
|
+
- test/fixtures/markup_app/views/capture_concat.erb
|
260
|
+
- test/fixtures/markup_app/views/capture_concat.haml
|
261
|
+
- test/fixtures/markup_app/views/capture_concat.slim
|
262
|
+
- test/fixtures/markup_app/views/content_for.erb
|
263
|
+
- test/fixtures/markup_app/views/content_for.haml
|
264
|
+
- test/fixtures/markup_app/views/content_for.slim
|
265
|
+
- test/fixtures/markup_app/views/content_tag.erb
|
266
|
+
- test/fixtures/markup_app/views/content_tag.haml
|
267
|
+
- test/fixtures/markup_app/views/content_tag.slim
|
268
|
+
- test/fixtures/markup_app/views/current_engine.erb
|
269
|
+
- test/fixtures/markup_app/views/current_engine.haml
|
270
|
+
- test/fixtures/markup_app/views/current_engine.slim
|
271
|
+
- test/fixtures/markup_app/views/fields_for.erb
|
272
|
+
- test/fixtures/markup_app/views/fields_for.haml
|
273
|
+
- test/fixtures/markup_app/views/fields_for.slim
|
274
|
+
- test/fixtures/markup_app/views/form_for.erb
|
275
|
+
- test/fixtures/markup_app/views/form_for.haml
|
276
|
+
- test/fixtures/markup_app/views/form_for.slim
|
277
|
+
- test/fixtures/markup_app/views/form_tag.erb
|
278
|
+
- test/fixtures/markup_app/views/form_tag.haml
|
279
|
+
- test/fixtures/markup_app/views/form_tag.slim
|
280
|
+
- test/fixtures/markup_app/views/link_to.erb
|
281
|
+
- test/fixtures/markup_app/views/link_to.haml
|
282
|
+
- test/fixtures/markup_app/views/link_to.slim
|
283
|
+
- test/fixtures/markup_app/views/mail_to.erb
|
284
|
+
- test/fixtures/markup_app/views/mail_to.haml
|
285
|
+
- test/fixtures/markup_app/views/mail_to.slim
|
286
|
+
- test/fixtures/markup_app/views/meta_tag.erb
|
287
|
+
- test/fixtures/markup_app/views/meta_tag.haml
|
288
|
+
- test/fixtures/markup_app/views/meta_tag.slim
|
289
|
+
- test/fixtures/markup_app/views/partials/_erb.erb
|
290
|
+
- test/fixtures/markup_app/views/partials/_haml.haml
|
291
|
+
- test/fixtures/markup_app/views/partials/_slim.slim
|
292
|
+
- test/fixtures/markup_app/views/simple_partial.erb
|
293
|
+
- test/fixtures/markup_app/views/simple_partial.haml
|
294
|
+
- test/fixtures/markup_app/views/simple_partial.slim
|
295
|
+
- test/fixtures/render_app/app.rb
|
296
|
+
- test/fixtures/render_app/views/_deep.erb
|
297
|
+
- test/fixtures/render_app/views/_deep.haml
|
298
|
+
- test/fixtures/render_app/views/_deep.slim
|
299
|
+
- test/fixtures/render_app/views/_partial_block_erb.erb
|
300
|
+
- test/fixtures/render_app/views/_partial_block_haml.haml
|
301
|
+
- test/fixtures/render_app/views/_partial_block_slim.slim
|
302
|
+
- test/fixtures/render_app/views/_unsafe.html.builder
|
303
|
+
- test/fixtures/render_app/views/_unsafe_object.html.builder
|
304
|
+
- test/fixtures/render_app/views/current_engine.haml
|
305
|
+
- test/fixtures/render_app/views/current_engines/_erb.erb
|
306
|
+
- test/fixtures/render_app/views/current_engines/_haml.haml
|
307
|
+
- test/fixtures/render_app/views/current_engines/_slim.slim
|
308
|
+
- test/fixtures/render_app/views/dive_inner_erb.erb
|
309
|
+
- test/fixtures/render_app/views/dive_inner_haml.haml
|
310
|
+
- test/fixtures/render_app/views/dive_inner_slim.slim
|
311
|
+
- test/fixtures/render_app/views/dive_outer_erb.erb
|
312
|
+
- test/fixtures/render_app/views/dive_outer_haml.haml
|
313
|
+
- test/fixtures/render_app/views/dive_outer_slim.slim
|
314
|
+
- test/fixtures/render_app/views/double_capture_erb.erb
|
315
|
+
- test/fixtures/render_app/views/double_capture_haml.haml
|
316
|
+
- test/fixtures/render_app/views/double_capture_slim.slim
|
317
|
+
- test/fixtures/render_app/views/erb/test.erb
|
318
|
+
- test/fixtures/render_app/views/explicit_engine.haml
|
319
|
+
- test/fixtures/render_app/views/haml/test.haml
|
320
|
+
- test/fixtures/render_app/views/render_block_erb.erb
|
321
|
+
- test/fixtures/render_app/views/render_block_haml.haml
|
322
|
+
- test/fixtures/render_app/views/render_block_slim.slim
|
323
|
+
- test/fixtures/render_app/views/ruby_block_capture_erb.erb
|
324
|
+
- test/fixtures/render_app/views/ruby_block_capture_haml.haml
|
325
|
+
- test/fixtures/render_app/views/ruby_block_capture_slim.slim
|
326
|
+
- test/fixtures/render_app/views/template/_user.haml
|
327
|
+
- test/fixtures/render_app/views/template/haml_template.haml
|
328
|
+
- test/fixtures/render_app/views/template/some_template.haml
|
329
|
+
- test/fixtures/render_app/views/wrong_capture_erb.erb
|
330
|
+
- test/fixtures/render_app/views/wrong_capture_haml.haml
|
331
|
+
- test/fixtures/render_app/views/wrong_capture_slim.slim
|
332
|
+
- test/helper.rb
|
333
|
+
- test/test_asset_tag_helpers.rb
|
334
|
+
- test/test_form_builder.rb
|
335
|
+
- test/test_form_helpers.rb
|
336
|
+
- test/test_format_helpers.rb
|
337
|
+
- test/test_helpers.rb
|
338
|
+
- test/test_locale.rb
|
339
|
+
- test/test_number_helpers.rb
|
340
|
+
- test/test_output_helpers.rb
|
341
|
+
- test/test_render_helpers.rb
|
342
|
+
- test/test_rendering.rb
|
343
|
+
- test/test_rendering_extensions.rb
|
344
|
+
- test/test_tag_helpers.rb
|
345
|
+
has_rdoc:
|