Module: Ramaze::View::Haml

Defined in:
lib/ramaze/view/haml.rb

Overview

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

Class Method Summary (collapse)

Class Method Details

+ (Object) call(action, string)



12
13
14
15
16
17
18
19
20
21
22
23
24
# 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