Created
September 23, 2012 17:57
-
-
Save ncri/3772514 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Coffee | |
module Rails | |
class HamlTemplateHandler | |
def self.haml_handler | |
@@haml_handler ||= ActionView::Template.registered_template_handler(:haml) | |
end | |
def self.call(template) | |
compiled_source = haml_handler.call(template) | |
"CoffeeScript.compile(begin;#{compiled_source};end)" | |
end | |
end | |
end | |
end | |
ActiveSupport.on_load(:action_view) do | |
ActionView::Template.register_template_handler :coffee_haml, Coffee::Rails::HamlTemplateHandler | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment