module Roda::RodaPlugins::CustomBlockResults::RequestMethods
def unsupported_block_result(result)
Try each configured custom block result, and call the related method
def unsupported_block_result(result) roda_class.opts[:custom_block_results].each do |klass, meth| return scope.send(meth, result) if klass === result end super end