diff options
author | schneems <richard.schneeman@gmail.com> | 2013-05-16 16:21:53 -0500 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-05-16 18:42:15 -0300 |
commit | ba0695f48a28d34a9ee4d8da7ec61e15ce90a910 (patch) | |
tree | 9080f48f7cc33c68823907015b6796f17e7f524e /activerecord/test | |
parent | 156e2e3fd83ea6aa96a92149fefab37b4d6fdbf8 (diff) | |
download | rails-ba0695f48a28d34a9ee4d8da7ec61e15ce90a910.tar.gz rails-ba0695f48a28d34a9ee4d8da7ec61e15ce90a910.tar.bz2 rails-ba0695f48a28d34a9ee4d8da7ec61e15ce90a910.zip |
Fix named routing regression from 3.2.13
When named route that is nested is used in 3.2.13
Example `routes.rb`:
```
resources :nested do
resources :builder, :controller => 'nested/builder'
end
```
In 3.2.12 and 3.2.12 this named route would work:
```
nested_builder_path(:last_step, :nested_id => "foo")
```
Generating a url that looks like `/nested/foo/builder/last_step`. This PR fixes the regression when building urls via the optimized helper. Any explicit keys set in the options are removed from the list of implicitly mapped keys.
Not sure if this is exactly how the original version worked, but this fixes this use case regression.
Diffstat (limited to 'activerecord/test')
0 files changed, 0 insertions, 0 deletions