module Ramaze::View::Haml

View adapter that allows views to use Haml, for more information see the following website: haml-lang.com/

Public Class Methods

call(action, string) click to toggle source
# File lib/ramaze/view/haml.rb, line 12
def self.call(action, string)
  options = action.options

  if haml_options = action.instance.ancestral_trait[:haml_options]
    options = options.merge(haml_options)
  end

  action.options[:filename] = (action.view || '(haml)')
  haml = View.compile(string){|s| ::Haml::Engine.new(s, options) }
  html = haml.to_html(action.instance, action.variables)

  return html, 'text/html'
end