The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Poet::App::Command;
$Poet::App::Command::VERSION = '0.14';
use Poet::Moose;
use Cwd qw(getcwd);
use strict;
use warnings;

method initialize_environment () {
    require Poet::Script;
    Poet::Script::initialize_with_root_dir( getcwd() );
}

extends 'MooseX::App::Cmd::Command';

1;