When Markaby and Rails 2.0.2 meet, there is a horrible head on collision. The issue is the following line 8 in rails.rb in the markaby distribution:
compile_and_render_template(template_extension, template, file_path, local_assigns)
but it can be fixed ismply by putting:
compile_and_render_template(@@template_handlers[template_extension.to_sym], template, file_path, local_assigns)
so the question is: Is this an error in Markaby or an error in ActionPack? If Markaby is changed to support Rails 2.0.2, will it not work with previous versions of Rails?