Module: ActionView::Helpers::TextHelper
- Defined in:
- lib/gems/haml-2.0.4/lib/haml/helpers/action_view_mods.rb
Instance Method Summary collapse
- #concat_with_haml(string, binding = nil) ⇒ Object (also: #concat)
Instance Method Details
#concat_with_haml(string, binding = nil) ⇒ Object Also known as: concat
83 84 85 86 87 88 89 |
# File 'lib/gems/haml-2.0.4/lib/haml/helpers/action_view_mods.rb', line 83 def concat_with_haml(string, binding = nil) if is_haml? haml_buffer.buffer.concat(string) else concat_without_haml(string, binding) end end |