Class: ActionView::Template::HTML

Inherits:
Object
  • Object
show all
Defined in:
actionview/lib/action_view/template/html.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(string, type = nil) ⇒ HTML

Returns a new instance of HTML.



7
8
9
10
11
# File 'actionview/lib/action_view/template/html.rb', line 7

def initialize(string, type = nil)
  @string = string.to_s
  @type   = Types[type] || type if type
  @type ||= Types[:html]
end

Instance Attribute Details

#typeObject

Returns the value of attribute type



5
6
7
# File 'actionview/lib/action_view/template/html.rb', line 5

def type
  @type
end

Instance Method Details

#formatsObject



29
30
31
# File 'actionview/lib/action_view/template/html.rb', line 29

def formats
  [@type.respond_to?(:ref) ? @type.ref : @type.to_s]
end

#identifierObject



13
14
15
# File 'actionview/lib/action_view/template/html.rb', line 13

def identifier
  'html template'
end

#inspectObject



17
18
19
# File 'actionview/lib/action_view/template/html.rb', line 17

def inspect
  'html template'
end

#render(*args) ⇒ Object



25
26
27
# File 'actionview/lib/action_view/template/html.rb', line 25

def render(*args)
  to_str
end

#to_strObject



21
22
23
# File 'actionview/lib/action_view/template/html.rb', line 21

def to_str
  ERB::Util.h(@string)
end