diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-11-02 19:10:22 -0200 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-11-02 19:11:58 -0200 |
commit | e41d78ce221b2ca84cc260e20f3813eaace586b3 (patch) | |
tree | 2a3ab1596d0a608e919ee48eb7107c8b78a8e905 | |
parent | 190dddf2314d394bb5c8435d8aea85a3254b55cb (diff) | |
download | rails-e41d78ce221b2ca84cc260e20f3813eaace586b3.tar.gz rails-e41d78ce221b2ca84cc260e20f3813eaace586b3.tar.bz2 rails-e41d78ce221b2ca84cc260e20f3813eaace586b3.zip |
Clear url helpers when reloading routes
-rw-r--r-- | actionpack/CHANGELOG.md | 4 | ||||
-rw-r--r-- | actionpack/lib/action_dispatch/routing/route_set.rb | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md index 9da9e9366b..2bf3801b7d 100644 --- a/actionpack/CHANGELOG.md +++ b/actionpack/CHANGELOG.md @@ -1,5 +1,9 @@ ## Rails 3.2.9 (unreleased) ## +* Clear url helpers when reloading routes. + + *Santiago Pastorino* + * Revert the shorthand routes scoped with `:module` option fix This added a regression since it is changing the URL mapping. This makes the stable release backward compatible. diff --git a/actionpack/lib/action_dispatch/routing/route_set.rb b/actionpack/lib/action_dispatch/routing/route_set.rb index cde6cb20cc..667094c469 100644 --- a/actionpack/lib/action_dispatch/routing/route_set.rb +++ b/actionpack/lib/action_dispatch/routing/route_set.rb @@ -291,6 +291,7 @@ module ActionDispatch def clear! @finalized = false + @url_helpers = nil named_routes.clear set.clear formatter.clear |