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

fiber is available in ruby19

This commit is contained in:
Vishnu Atrai 2011-12-31 01:12:53 +05:30
parent 7c55d6977c
commit 18ed37b925

View file

@ -1,7 +1,7 @@
# 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)
require 'fiber'
module ActionView
# == TODO