my %hash = (
some_long_key => {
INCLUDE_PATH => __PACKAGE__->path_to('www/templates/tt')
}
);
####
my $process = Background->new($^X, "-I$lib",
"-MMyLong:Namespace::Bar::Bat",
"-e 1", "other", "arguments", "here");
####
my $process = Background->new( $^X, "-I$lib", "-MMyLong:Namespace::Bar::Bat",
"-e 1", "other", "arguments", "here" );
####
my $process = Background->new(
$^X, "-I$lib", "-MMyLong:Namespace::Bar::Bat",
"-e 1", "other", "arguments", "here",
);
####
my $process = Background->new(
$^X,
"-I$lib",
"-MMyLong:Namespace::Bar::Bat",
"-e 1",
"other",
"arguments",
"here",
);