Class: ActionView::Template::Text
- Defined in:
- actionpack/lib/action_view/template/text.rb
Overview
:nodoc:
Constant Summary
Constants inherited from String
Instance Attribute Summary collapse
-
#mime_type ⇒ Object
Returns the value of attribute mime_type.
Instance Method Summary collapse
- #formats ⇒ Object
- #identifier ⇒ Object
-
#initialize(string, mime_type = nil) ⇒ Text
constructor
A new instance of Text.
- #inspect ⇒ Object
- #render(*args) ⇒ Object
Methods inherited from String
#acts_like_string?, #as_json, #at, #blank?, #camelize, #classify, #constantize, #dasherize, #deconstantize, #demodulize, #encode_json, #encoding_aware?, #exclude?, #first, #foreign_key, #from, #html_safe, #humanize, #inquiry, #is_utf8?, #last, #mb_chars, #ord, #parameterize, #pluralize, #safe_constantize, #singularize, #squish, #squish!, #strip_heredoc, #tableize, #titleize, #to, #to_date, #to_datetime, #to_time, #truncate, #underscore
Constructor Details
Instance Attribute Details
#mime_type ⇒ Object
Returns the value of attribute mime_type
5 6 7 |
# File 'actionpack/lib/action_view/template/text.rb', line 5 def mime_type @mime_type end |
Instance Method Details
#formats ⇒ Object
25 26 27 |
# File 'actionpack/lib/action_view/template/text.rb', line 25 def formats [@mime_type.to_sym] end |
#identifier ⇒ Object
13 14 15 |
# File 'actionpack/lib/action_view/template/text.rb', line 13 def identifier 'text template' end |
#inspect ⇒ Object
17 18 19 |
# File 'actionpack/lib/action_view/template/text.rb', line 17 def inspect 'text template' end |
#render(*args) ⇒ Object
21 22 23 |
# File 'actionpack/lib/action_view/template/text.rb', line 21 def render(*args) to_s end |