Class: ActionView::Template::Text
- Inherits:
-
Object
- Object
- ActionView::Template::Text
- Defined in:
- lib/action_view/template/text.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
- #formats ⇒ Object
- #identifier ⇒ Object
-
#initialize(string, type = nil) ⇒ Text
constructor
A new instance of Text.
- #inspect ⇒ Object
- #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/text.rb', line 5 def type @type end |
Instance Method Details
#formats ⇒ Object
29 30 31 |
# File 'lib/action_view/template/text.rb', line 29 def formats [@type.respond_to?(:ref) ? @type.ref : @type.to_s] end |
#identifier ⇒ Object
13 14 15 |
# File 'lib/action_view/template/text.rb', line 13 def identifier 'text template' end |
#inspect ⇒ Object
17 18 19 |
# File 'lib/action_view/template/text.rb', line 17 def inspect 'text template' end |
#render(*args) ⇒ Object
25 26 27 |
# File 'lib/action_view/template/text.rb', line 25 def render(*args) to_str end |
#to_str ⇒ Object
21 22 23 |
# File 'lib/action_view/template/text.rb', line 21 def to_str @string end |