Sha256: 16b9c973faff542974632babf7a23fcbee040f89bef770aba80e96c2f61a155a

Contents?: true

Size: 827 Bytes

Versions: 2

Compression:

Stored size: 827 Bytes

Contents

#          Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
# All files in this distribution are subject to the terms of the MIT license.
Ramaze.setup(:verbose => false) do
  gem 'erubis'
end

module Ramaze
  module View
    ##
    # View adapter for the Erubis template engine. More information about Erubis
    # can be found here: http://www.kuwata-lab.com/erubis/
    #
    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 # Erubis
  end # View
end # Ramaze

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ramaze-2012.04.14 lib/ramaze/view/erubis.rb
ramaze-2012.03.07 lib/ramaze/view/erubis.rb