Sha256: f2b5437d65a19a02c4f5281752955ec7000405ecf316e5c84d11653e1f4826e8
Contents?: true
Size: 728 Bytes
Versions: 3
Compression:
Stored size: 728 Bytes
Contents
require 'haml' require 'haml/util' require 'haml/engine' module Ramaze module View ## # View adapter that allows views to use Haml, for more information see the # following website: http://haml-lang.com/ # module Haml 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 end # Haml end # View end # Ramaze
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ramaze-2023.01.06 | lib/ramaze/view/haml.rb |
ramaze-2012.12.08 | lib/ramaze/view/haml.rb |
ramaze-2012.12.08b | lib/ramaze/view/haml.rb |