summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGibheer <gibheer@gmail.com>2013-09-09 15:45:59 +0200
committerGibheer <gibheer@gmail.com>2013-09-09 15:45:59 +0200
commitdefb7703c69d1e4f756254723d50997fb8dc63da (patch)
tree80f05c0b34c5a2c0ecf75111970e6505f8c72694 /lib
parentc55441f99065d1ff9efeb7d46f5e5c14b0b3232a (diff)
sort routes for more specific results
This change sorts the routes to get the most specific routes first and avoid hitting a route which is not the most specific match. With this the regex to extract variables is made more strict to avoid matching half of the URI.
Diffstat (limited to 'lib')
-rw-r--r--lib/zero/router.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/zero/router.rb b/lib/zero/router.rb
index 659d9b6..482f25a 100644
--- a/lib/zero/router.rb
+++ b/lib/zero/router.rb
@@ -20,7 +20,7 @@ module Zero
# match for variables in routes
VARIABLE_MATCH = %r{:(\w+)[^/]?}
# the replacement string to make it an regex
- VARIABLE_REGEX = '(?<\1>.+?)'
+ VARIABLE_REGEX = '(?<\1>[\w]+?)'
# regex part of the beginning of the line
REGEX_BEGINNING = '\A'
# regex part of the end of the line
@@ -41,7 +41,7 @@ module Zero
# @param routes [Hash] a map of URLs to rack compatible applications
def initialize(routes)
@routes = {}
- routes.each do |route, target|
+ routes.to_a.sort_by(&:first).reverse.each do |route, target|
@routes[
Regexp.new(REGEX_BEGINNING +
route.gsub(VARIABLE_MATCH, VARIABLE_REGEX) +