LuckyRouter::Matcher(T)
Add routes and match routes
'T' is the type of the 'payload'. The 'payload' is what will be returned if the route matches.
Example
# 'T' will be 'Symbol'
router = LuckyRouter::Matcher(Symbol).new
# Tell the router what payload to return if matched
router.add("get", "/users", :index)
# This will return :index
router.match("get", "/users").payload # :index
Instance methods
normalized_paths
Source