Class: Fortitude::Rails::TemplateHandler
- Inherits:
-
Object
- Object
- Fortitude::Rails::TemplateHandler
- Defined in:
- lib/fortitude/rails/template_handler.rb
Instance Method Summary collapse
Instance Method Details
#call(template, &block) ⇒ Object
6 7 8 9 10 11 12 13 |
# File 'lib/fortitude/rails/template_handler.rb', line 6 def call(template, &block) = "views/#{template.identifier =~ %r(views/([^.]*)(\..*)?\.rb) && $1}".camelize is_partial = !! (File.basename(template.identifier) =~ /^_/) " Fortitude::Rails::Renderer.render(\#{widget_class_name}, self, local_assigns, \#{is_partial.inspect}) { |*args| yield *args }\n SRC\nend\n" |
#supports_streaming? ⇒ Boolean
15 16 17 |
# File 'lib/fortitude/rails/template_handler.rb', line 15 def supports_streaming? true end |