module Roda::RodaPlugins::MultiView::RequestMethods

def multi_view(arg)

there is one capture, and call view with that capture.
Pass the argument to +get+, and assume if the matchers match that
def multi_view(arg)
  get(arg) do |page|
    scope.view(page)
  end
end