Skip to content

Instantly share code, notes, and snippets.

@marcusramberg
Created May 2, 2012 12:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcusramberg/2576185 to your computer and use it in GitHub Desktop.
Save marcusramberg/2576185 to your computer and use it in GitHub Desktop.
- Changed routes syntax again, this change is not entirely backwards
compatible but will only affect you if you are using the relaxed
and wildcard variations.
"/((foo))" becomes "/(.foo)"
"/(((foo)))" becomes "/(*foo)"
@marcusramberg
Copy link
Author

    - Changed routes syntax, this change is not backwards compatible and
      you need to change all your existing routes.
        "/:foo" becomes "/(foo)"
        "/^foo" becomes "/((foo))"
        "/*foo" becomes "/(((foo)))"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment