Module ActionView
In: lib/haml/template/patch.rb
lib/haml/helpers/xss_mods.rb
lib/haml/helpers/action_view_mods.rb
lib/haml/helpers/rails_323_textarea_fix.rb

module AbstractController

  module Rendering
    def render_to_body_with_haml(options = {})
      if rendered = render_to_body_without_haml(options)
        rendered.gsub('<haml:newline/>', "\n").html_safe
      end
    end
    alias_method_chain :render_to_body, :haml
  end

end

Classes and Modules

Module ActionView::Helpers
Class ActionView::Base

[Validate]