diff options
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/renderer/streaming_template_renderer.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/renderer/streaming_template_renderer.rb b/actionpack/lib/action_view/renderer/streaming_template_renderer.rb index acc84a50e7..52f0e9f5bd 100644 --- a/actionpack/lib/action_view/renderer/streaming_template_renderer.rb +++ b/actionpack/lib/action_view/renderer/streaming_template_renderer.rb @@ -1,4 +1,7 @@ -require 'fiber' +# 1.9 ships with Fibers but we need to require the extra +# methods explicitly. We only load those extra methods if +# Fiber is available in the first place. +require 'fiber' if defined?(Fiber) module ActionView # Consider the following layout: |