I have the following route in my routes.php-config:
'apple-touch-icon\.png' => 'pictures_deliver/apple_iphone_icon',
I found out that fuel is then trying to find the Controller "Controller_Pictures_deliver" - not "Controller_Pictures_Deliver" as I would have expected. As far as I could determine the naming scheme within Fuel is to always start with an uppercase character after an underscore, or am I missing something?
On http://fuelphp.com/docs/general/controllers/base.html there is also an example with a controller named "Controller_Admin_User" and there is no hint on this behavior on the routing page - so is this just a bug?