E.g. given the following `routes.rb`: ```rb get 'api/users' get ':team_slug/users' ``` It appears possible for a call to `/api/users` to return a normalized path of `/:team_slug/users` incorrectly when the path matches the route definition. https://github.com/getappmap/appmap-ruby/blob/master/lib/appmap/handler/rails/request_handler.rb#L59-L66
E.g. given the following
routes.rb:It appears possible for a call to
/api/usersto return a normalized path of/:team_slug/usersincorrectly when the path matches the route definition.https://github.com/getappmap/appmap-ruby/blob/master/lib/appmap/handler/rails/request_handler.rb#L59-L66