module Roda::RodaPlugins::SymbolMatchers

def self.configure(app)

def self.configure(app)
  app.opts[:symbol_matchers] ||= {}
  app.symbol_matcher(:d, /(\d+)/)
  app.symbol_matcher(:w, /(\w+)/)
  app.symbol_matcher(:rest, /(.*)/)
end

def self.load_dependencies(app)

def self.load_dependencies(app)
  app.plugin :_symbol_regexp_matchers
  app.plugin :_symbol_class_matchers
end