module Roda::RodaPlugins::MultiView::ClassMethods

def multi_view_compile(array)

match on any of the names and capture the matched name.
Given the array of view template names, return a regexp that will
def multi_view_compile(array)
  /(#{Regexp.union(array)})/
end