1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/lib/action_view/template/text.rb
Piotr Sarnacki 67f55e2822 Implement ActionView::Template::Types
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.
2012-08-28 11:19:36 +02:00

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