mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix CI test on 1.8
This commit is contained in:
parent
2bf0d9b06a
commit
0114dc38d5
1 changed files with 4 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue