Allow controllers to be assigned namespaces
It would be nice to be able to assign a url namespace to a controller, e.g.
module MyController
assign route_pattern # For example a regex or a string. Something from #19
def hello
"It Works!"
end
end
So that a route like request "/what", "MyController#hello"
will respond to /something_that_matches_pattern/what
.