Bill Centinaro

Results 2 issues of Bill Centinaro

Now that it's back to where it should be, and I'm no longer stupidly hacking master for app specific stuff... I can create pull requests. Anyways, fixed my bug again,...

route caching currently doesn't seem to take HTTP Verb into account For example ``` php $router->post('/(:controller(/:function(/:*args)))', array('controller' => 'home','function' => 'index'), array('controller' => '\vespora\controllers\main\%{controller|capfirst}Controller', 'function' => '%{function|lower}_post')); $router->request('/(:controller(/:function(/:*args)))', array('controller' =>...