Virtual Environment for Perl
I came from Python world and would like to see the virtual-env virtualenvwrapper functionality brought to the Perl world. I'm guessing I'll be accomplishing this in combination with Perlbrew.
-add virtual-env wrapper -add mkvirtualenv functionality -port virtualenv shell scripts to work with Perl
$ cd /path/to/project
$ /path/to/perl/bin/virtualenv.pl venv
$ source venv/bin/activate
(venv) $ perl -v
(venv) $ cpanm -v
(venv) $ deactivate
$ perl -v
$ /path/to/project/venv/bin/perl -v