diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2014-05-28 15:46:00 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2014-05-28 15:46:00 -0700 |
commit | c99d28f1f223e87523559f071eca2d84ac41f14c (patch) | |
tree | fbaa793f052e9fce21e4bb67ee47752cb5563d90 | |
parent | f0eff10c090a56ea28201341361439dfbc31485b (diff) | |
download | rails-c99d28f1f223e87523559f071eca2d84ac41f14c.tar.gz rails-c99d28f1f223e87523559f071eca2d84ac41f14c.tar.bz2 rails-c99d28f1f223e87523559f071eca2d84ac41f14c.zip |
reduce action.blank? calls
-rw-r--r-- | actionpack/lib/action_dispatch/routing/mapper.rb | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb index 565609542a..178728ea2a 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -262,8 +262,6 @@ module ActionDispatch hash = {} - action = action.to_s unless action.is_a?(Regexp) - if controller.is_a? Regexp hash[:controller] = controller else @@ -271,9 +269,13 @@ module ActionDispatch hash[:controller] = controller.to_s if controller end - check_action! action + if action.is_a? Regexp + hash[:action] = action + else + check_action! action.to_s + hash[:action] = action.to_s if action + end - hash[:action] = action unless action.blank? hash end end |