Making CGI::App Pluggable - Part 1
I love CGI::Application I find it robust and lightweight, and for the kind of applications I have to develop, I find myself using it constantly.
Right now I'm starting a new project in which I need the ability to make the app "pluggable", meaning that I want the ability to have the whole application divided in modules which can be auto-discovered. I took the initial idea from Catalyst, so I wanted to make that behavior available on CGI::App.
To be able to do this I need to be able to:
- Detect all avai…
I love Perl and I'm fortunate enough to make a living coding in it.