mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
67f55e2822
AV::Template::Types is a small abstraction to allow to specify template types that can be used in ActionView. When Action Pack is loaded it's replaced with Mime::Type.
34 lines
558 B
Ruby
34 lines
558 B
Ruby
module ActionView #:nodoc:
|
|
# = Action View Text Template
|
|
class Template
|
|
class Text #:nodoc:
|
|
attr_accessor :type
|
|
|
|
def initialize(string, type = nil)
|
|
@string = string.to_s
|
|
@type = Types[type] || type if type
|
|
@type ||= Types[:text]
|
|
end
|
|
|
|
def identifier
|
|
'text template'
|
|
end
|
|
|
|
def inspect
|
|
'text template'
|
|
end
|
|
|
|
def to_str
|
|
@string
|
|
end
|
|
|
|
def render(*args)
|
|
to_str
|
|
end
|
|
|
|
def formats
|
|
[@type.to_sym]
|
|
end
|
|
end
|
|
end
|
|
end
|