module Ramaze::View::Nagoro

Binding to the Nagoro templating engine.

To pipe your template through tidy you have to use:

Ramaze::View::Nagoro.options.tidy = true

@see github.com/manveru/nagoro

Public Class Methods

call(action, string) click to toggle source
# File lib/ramaze/view/nagoro.rb, line 24
def self.call(action, string)
  default_options = {
    :pipes     => options.pipes,
    :filename  => action.view,
    :binding   => action.binding,
    :variables => action.variables
  }

  render_options = default_options.merge(action.options)

  if options.tidy
    html = ::Nagoro.tidy_render(string.to_s, render_options)
  else
    html = ::Nagoro.render(string.to_s, render_options)
  end

  return html, 'text/html'
end