Class: Haml::Filters::Coffee
- Defined in:
- lib/haml/filters/coffee.rb
Instance Method Summary collapse
Methods inherited from TiltBase
Methods inherited from Base
Constructor Details
This class inherits a constructor from Haml::Filters::Base
Instance Method Details
#compile(node) ⇒ Object
5 6 7 8 9 10 11 12 |
# File 'lib/haml/filters/coffee.rb', line 5 def compile(node) require 'tilt/coffee' if explicit_require?('coffee') temple = [:multi] temple << [:static, "<script>\n"] temple << compile_with_tilt(node, 'coffee', indent_width: 2) temple << [:static, "</script>"] temple end |