Displaying 1 result from an estimated 1 matches for "md80".
Did you mean:
md0
2007 Jun 19
1
Reloader paths/
after investigating why the reloader wasnt working , i discovered 2 probs, one of which was sorta my fault (but will likely happen to others who make one-file apps)
first, my app was like this:
#!/usr/bn/env ruby
%w{applib1 applib2 digest/md80 airbus}.each{|r| require r}}
if __FILE__ == $0
Mongrel.config do
handler ''/'', Camping.reloader.new(__FILE__)
end
end
not exactly sure how it wraps the run request, since it mainly returns a constant name. but even so, the files are already required. maybe reloader shou...