diff options
author | Piotr Sarnacki <drogus@gmail.com> | 2010-08-03 19:36:53 +0200 |
---|---|---|
committer | Piotr Sarnacki <drogus@gmail.com> | 2010-09-03 22:59:11 +0200 |
commit | 79bd92b7833d52b74f50259cf8a21f9b05f3e9e3 (patch) | |
tree | fccf5b1b08816f0e6575a2bd4b1349fc8f821b07 /actionpack/lib/action_controller/metal | |
parent | 4131a2d804c54960ac70984e7453069fe8688365 (diff) | |
download | rails-79bd92b7833d52b74f50259cf8a21f9b05f3e9e3.tar.gz rails-79bd92b7833d52b74f50259cf8a21f9b05f3e9e3.tar.bz2 rails-79bd92b7833d52b74f50259cf8a21f9b05f3e9e3.zip |
Refactor ActionMailer to not use hide_actions
Diffstat (limited to 'actionpack/lib/action_controller/metal')
-rw-r--r-- | actionpack/lib/action_controller/metal/url_for.rb | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/actionpack/lib/action_controller/metal/url_for.rb b/actionpack/lib/action_controller/metal/url_for.rb index 1e34f21c77..85c6b0a9b5 100644 --- a/actionpack/lib/action_controller/metal/url_for.rb +++ b/actionpack/lib/action_controller/metal/url_for.rb @@ -2,7 +2,7 @@ module ActionController module UrlFor extend ActiveSupport::Concern - include ActionDispatch::Routing::UrlFor + include AbstractController::UrlFor def url_options options = {} @@ -16,18 +16,5 @@ module ActionController :_path_segments => request.symbolized_path_parameters ) end - - def _routes - raise "In order to use #url_for, you must include routing helpers explicitly. " \ - "For instance, `include Rails.application.routes.url_helpers" - end - - module ClassMethods - def action_methods - @action_methods ||= begin - super - _routes.named_routes.helper_names - end - end - end end end |