On Fri, Apr 25, 2008 at 07:56:37PM -0500, Jonathan Rockway wrote:
> That said, I always do this:
        (so apps can find libs w/ install_base set)
> 
>   package MyApp::Script::Whatever;
>   use Moose;
>   with 'MooseX::Getopt';
> 
>   has ...;
>   sub run { ... }
> 
> Then:
> 
>   #!/usr/bin/env perl
>   use FindBin qw($Bin);
>   use lib "$Bin/../lib";
>   use MyApp::Script::Whatever;
>   

        I've thought about this a bit. I think it fits the bill of what I'm
looking for. IMO it should be part of the M::B and/or EU::MM docs.

        Austin

Reply via email to