ActionView::Helpers::TextHelper

Public Instance Methods

concat(string) click to toggle source
concat(string, binding = nil) click to toggle source
Alias for: concat_with_haml
concat_with_haml(string, binding = nil) click to toggle source
    # File lib/haml/helpers/action_view_mods.rb, line 77
77:         def concat_with_haml(string, binding = nil)
78:           if is_haml?
79:             haml_buffer.buffer.concat(string)
80:           else
81:             concat_without_haml(string, binding)
82:           end
83:         end
Also aliased as: concat
concat_with_haml_xss(string) click to toggle source
     # File lib/haml/helpers/xss_mods.rb, line 141
141:       def concat_with_haml_xss(string)
142:         if is_haml?
143:           haml_buffer.buffer.concat(haml_xss_html_escape(string))
144:         else
145:           concat_without_haml_xss(string)
146:         end
147:       end
Also aliased as: concat
concat_without_haml(string, binding = nil) click to toggle source
Alias for: concat
concat_without_haml_xss(string, binding = nil) click to toggle source
Alias for: concat
safe_concat_with_haml_xss(string) click to toggle source
     # File lib/haml/helpers/xss_mods.rb, line 153
153:         def safe_concat_with_haml_xss(string)
154:           if is_haml?
155:             haml_buffer.buffer.concat(string)
156:           else
157:             safe_concat_without_haml_xss(string)
158:           end
159:         end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.