1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Renamed Redirector to Redirecting (its a module, not a class)

This commit is contained in:
David Heinemeier Hansson 2009-12-20 17:25:13 -08:00
parent 83f4d86a93
commit 9b41e1e4d8
4 changed files with 4 additions and 4 deletions

View file

@ -24,7 +24,7 @@ module ActionController
autoload :MimeResponds
autoload :RackConvenience
autoload :Compatibility
autoload :Redirector
autoload :Redirecting
autoload :Rendering
autoload :RenderOptions
autoload :Rescue

View file

@ -8,7 +8,7 @@ module ActionController
include ActionController::Helpers
include ActionController::HideActions
include ActionController::UrlFor
include ActionController::Redirector
include ActionController::Redirecting
include ActionController::Rendering
include ActionController::RenderOptions::All
include ActionController::Layouts

View file

@ -58,7 +58,7 @@ module ActionController
# Basic implementations for content_type=, location=, and headers are
# provided to reduce the dependency on the RackConvenience module
# in Renderer and Redirector.
# in Rendering and Redirecting.
def content_type=(type)
headers["Content-Type"] = type.to_s

View file

@ -7,7 +7,7 @@ module ActionController
end
end
module Redirector
module Redirecting
extend ActiveSupport::Concern
include AbstractController::Logger