aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-04-18 08:17:47 +0200
committerJosé Valim <jose.valim@gmail.com>2011-04-18 08:17:47 +0200
commit7a152ab0127877eea6f2cef8ff6d1975a3fc16d4 (patch)
tree5a663fc5ef51e4df939cc30b4522fe54d563c0ba /actionpack/lib/action_controller
parent944b4d57960569d5c9a08783044677721a6de4df (diff)
downloadrails-7a152ab0127877eea6f2cef8ff6d1975a3fc16d4.tar.gz
rails-7a152ab0127877eea6f2cef8ff6d1975a3fc16d4.tar.bz2
rails-7a152ab0127877eea6f2cef8ff6d1975a3fc16d4.zip
Rename it to DataStreaming.
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r--actionpack/lib/action_controller/base.rb2
-rw-r--r--actionpack/lib/action_controller/metal/data_streaming.rb (renamed from actionpack/lib/action_controller/metal/streaming.rb)2
2 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb
index 5f9e082cd3..53e0a4b9d1 100644
--- a/actionpack/lib/action_controller/base.rb
+++ b/actionpack/lib/action_controller/base.rb
@@ -199,7 +199,7 @@ module ActionController
Flash,
RequestForgeryProtection,
ForceSSL,
- Streaming,
+ DataStreaming,
RecordIdentifier,
HttpAuthentication::Basic::ControllerMethods,
HttpAuthentication::Digest::ControllerMethods,
diff --git a/actionpack/lib/action_controller/metal/streaming.rb b/actionpack/lib/action_controller/metal/data_streaming.rb
index 312dc8eb3e..997bc6e958 100644
--- a/actionpack/lib/action_controller/metal/streaming.rb
+++ b/actionpack/lib/action_controller/metal/data_streaming.rb
@@ -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