in reply to On the merits of implementing a script running application

I am wondering if you have seen MooseX::Getopt yet? It makes it very easy to map your objects to scripts, which might actually help here. Also, since you are already using Moose a lot of what you have written above could actually be done with meta-programming.

-stvn
  • Comment on Re: On the merits of implementing a script running application

Replies are listed 'Best First'.
Re^2: On the merits of implementing a script running application
by BaldManTom (Friar) on Apr 08, 2008 at 16:01 UTC

    Hi stvn,

    Nope, I hadn't yet seen MooseX::Getopt, but I'll check it out. Thanks! I'm only just now getting into using Moose itself, there's lots more to explore, including meta-programming. Thanks for the tips!