remove unnecessary header munging for static file serving
[rainbows.git] / lib / rainbows / fiber.rb
blobe65ef1bf3ff36003474b96937fc1ff0889d989f9
1 # -*- encoding: binary -*-
2 # :enddoc:
3 begin
4   require 'fiber'
5 rescue LoadError
6   defined?(NeverBlock) or raise
7 end
9 module Rainbows
11   # core module for all things that use Fibers in Rainbows!
12   module Fiber
13     autoload :Base, 'rainbows/fiber/base'
14     autoload :Queue, 'rainbows/fiber/queue'
15   end
16 end