Class: ActionView::Template::HTML
- Inherits:
-
Object
- Object
- ActionView::Template::HTML
- Defined in:
- lib/action_view/template/html.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
- #formats ⇒ Object
- #identifier ⇒ Object (also: #inspect)
-
#initialize(string, type = nil) ⇒ HTML
constructor
A new instance of HTML.
- #render(*args) ⇒ Object
- #to_str ⇒ Object
Constructor Details
Instance Attribute Details
#type ⇒ Object
Returns the value of attribute type.
5 6 7 |
# File 'lib/action_view/template/html.rb', line 5 def type @type end |
Instance Method Details
#formats ⇒ Object
27 28 29 |
# File 'lib/action_view/template/html.rb', line 27 def formats [@type.respond_to?(:ref) ? @type.ref : @type.to_s] end |
#identifier ⇒ Object Also known as: inspect
13 14 15 |
# File 'lib/action_view/template/html.rb', line 13 def identifier "html template" end |
#render(*args) ⇒ Object
23 24 25 |
# File 'lib/action_view/template/html.rb', line 23 def render(*args) to_str end |
#to_str ⇒ Object
19 20 21 |
# File 'lib/action_view/template/html.rb', line 19 def to_str ERB::Util.h(@string) end |