Guest User

Untitled

a guest
Apr 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. class RbTemplateHandler < ActionView::TemplateHandler
  2. include ActionView::TemplateHandlers::Compilable if defined?(ActionView::TemplateHandlers::Compilable)
  3.  
  4. def compile(template)
  5. template.source
  6. end
  7.  
  8. end
  9.  
  10. ActionView::Template.register_template_handler(:rb, RbTemplateHandler)
Add Comment
Please, Sign In to add comment