The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

App::Kit::Obj::Ex - system execution utility object

VERSION

This document describes App::Kit::Obj::Ex version 0.1

SYNOPSIS

    my $ex = App::Kit::Obj::Ex->new();
    $ex->run_cmd(…)

DESCRIPTION

system execution utility object

INTERFACE

new()

Returns the object.

Takes one required attribute: _app. It should be an App::Kit object for it to use internally.

whereis()

Lazy wrapper of Unix::Whereis’s whereis().

run_cmd()

Lazy wrapper of IPC::Open3::Utils’s run_cmd().

put_cmd_in()

Lazy wrapper of IPC::Open3::Utils’s put_cmd_in().

spork()

Lazy wrapper of Acme::Spork’s spork().

runcom()

Takes one or more strings (to be output as a sort of header) or array refs (arguments to Running::Commentary’s run().

If you do not call 'use App::Kit::Util::RunCom;' at begin time this method will raise an exception reminding you to do so.

See App::Kit::Util::RunCom for more info on why that has to be that way.

fsleep()

Encapsulated fractional second sleep logic (via four argument select).

Takes the fractional seconds to sleep.

Return true (i.e. not the value of select()) after it is done.

DIAGNOSTICS

Due to compile time Shenanigans in an underlying module, you must 'use App::Kit::Util::RunCom;' to enable runcom().

You called runcom() without setting it up first at compile time per its documentation.

CONFIGURATION AND ENVIRONMENT

Requires no configuration files or environment variables.

DEPENDENCIES

Unix::Whereis, IPC::Open3::Utils, Acme::Spork, Running::Commentary (via App::Kit::Util::RunCom)

INCOMPATIBILITIES

None reported.

BUGS AND LIMITATIONS

No bugs have been reported.

Please report any bugs or feature requests to bug-app-kit@rt.cpan.org, or through the web interface at http://rt.cpan.org.

AUTHOR

Daniel Muey <http://drmuey.com/cpan_contact.pl>

LICENCE AND COPYRIGHT

Copyright (c) 2013, Daniel Muey <http://drmuey.com/cpan_contact.pl>. All rights reserved.

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.

DISCLAIMER OF WARRANTY

BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.