I''m trying to figure out how to get the Reloader to work with this kind
of a setup:
(from http://camping.rubyforge.org/classes/Camping/FastCGI.html)
---
require ''camping/fastcgi''
fast = Camping::FastCGI.new
fast.mount("/blog", Blog)
fast.mount("/tepee", Tepee)
fast.mount("/", Index)
fast.start
Tried a bunch of different variations of the Reloader including trying
to use the find_app method with no luck. In most variations I don''t get
any errors, but the reloader doesn''t kick in when I modify files.
Anyone
know how it can be done?
-Naitik