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

Rename it to DataStreaming.

This commit is contained in:
José Valim 2011-04-18 08:17:47 +02:00
parent 944b4d5796
commit 7a152ab012
3 changed files with 3 additions and 3 deletions

View file

@ -13,6 +13,7 @@ module ActionController
autoload :Compatibility
autoload :ConditionalGet
autoload :Cookies
autoload :DataStreaming
autoload :Flash
autoload :ForceSSL
autoload :Head
@ -30,7 +31,6 @@ module ActionController
autoload :Rescue
autoload :Responder
autoload :SessionManagement
autoload :Streaming
autoload :Testing
autoload :UrlFor
end

View file

@ -199,7 +199,7 @@ module ActionController
Flash,
RequestForgeryProtection,
ForceSSL,
Streaming,
DataStreaming,
RecordIdentifier,
HttpAuthentication::Basic::ControllerMethods,
HttpAuthentication::Digest::ControllerMethods,

View file

@ -3,7 +3,7 @@ require 'active_support/core_ext/file/path'
module ActionController #:nodoc:
# Methods for sending arbitrary data and for streaming files to the browser,
# instead of rendering.
module Streaming
module DataStreaming
extend ActiveSupport::Concern
include ActionController::Rendering