Rack::Reloader reloads all files back into the same running instance of Ruby, which means the result is virtually the same as this...
classApp<Scorched::Controller get'/'do 'hello' end end
classApp<Scorched::Controller get'/'do "g'day" end end
That works in Ruby because obviously it allows classes to be re-opened, but alas, the new route is simply added to the end of the existing list of mappings. I recommend using `shotgun` for apps with a quick boot time, or otherwise `rerun -p "**/*.rb"` for apps with a longer boot process.