template_streaming 0.0.7 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.0.8 2010-04-28
2
+
3
+ * Ensure Rack::Chunked is at the base of the middleware stack.
4
+
1
5
  == 0.0.7 2010-04-28
2
6
 
3
7
  * Fix threshold when content type is not set before rendering.
@@ -1,5 +1,5 @@
1
1
  module TemplateStreaming
2
- VERSION = [0, 0, 7]
2
+ VERSION = [0, 0, 8]
3
3
 
4
4
  class << VERSION
5
5
  include Comparable
@@ -263,5 +263,5 @@ module TemplateStreaming
263
263
  ActionView::Base.send :include, View
264
264
  ActionController::Base.send :include, Controller
265
265
  ActionController::Response.send :include, Response
266
- ActionController::Dispatcher.middleware.use Rack::Chunked
266
+ ActionController::Dispatcher.middleware.insert 0, Rack::Chunked
267
267
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 7
9
- version: 0.0.7
8
+ - 8
9
+ version: 0.0.8
10
10
  platform: ruby
11
11
  authors:
12
12
  - George Ogata