File: ifc.pm

package info (click to toggle)
libmoox-cmd-perl 0.017-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 320 kB
  • sloc: perl: 1,110; sh: 6; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 366 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package SecondTestApp::Cmd::ifc;

BEGIN
{
    my $moodel = $ENV{WHICH_MOODEL} || "Moo";
    eval "use $moodel;";
    $@ and die $@;
    $moodel->import;

    __PACKAGE__->can("with")->("MooX::Cmd::Role");
}

around _build_command_execute_method_name => sub { "run" };

around _build_command_execute_from_new => sub { 1 };

sub run { @_ }

eval "use MooX::Cmd;";

1;