Sha256: d309f73e477801852a076a7746acd9fa667025058701a6a664e78dcdfa08a554

Contents?: true

Size: 614 Bytes

Versions: 22

Compression:

Stored size: 614 Bytes

Contents

#          Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
# All files in this distribution are subject to the terms of the Ruby license.

require 'erubis'

module Ramaze
  module View
    module Erubis
      OPTIONS = { :engine => ::Erubis::Eruby }

      def self.call(action, string)
        options = OPTIONS.dup
        engine = options.delete(:engine)

        eruby = View.compile(string){|s| engine.new(s, options) }
        eruby.init_evaluator(:filename => (action.view || __FILE__))
        html = eruby.evaluate(action.instance)

        return html, 'text/html'
      end
    end
  end
end

Version data entries

22 entries across 22 versions & 4 rubygems

Version Path
ramaze-2009.06.12 lib/ramaze/view/erubis.rb
ramaze-2009.06.04 lib/ramaze/view/erubis.rb