(I believe this is doable, but just googling around, I haven't found any examples of it.)
Perhaps a more concrete example of what I'm asking. Suppose I have rails-3 apps already written: Foo, Bar, Baz, Qux. I have another application written: Master. Within Master I want to match routes and run the other apps in it. Since they are all rack-compatible, I imagine the routing in master would be something like this:
match "/foo" => Foo::Application
match "/bar" => Bar::Application
match "/baz" => Baz::Application
match "/qux" => Qux::Application
but I haven't figured out how to do it and where to actually put the code for the apps relative to the master app.