App-Module-Template

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

         "requires" : {
            "Carp" : "0",
            "Config::General" : "0",
            "File::Copy" : "0",
            "File::HomeDir" : "0",
            "File::Path" : "0",
            "File::Spec" : "0",
            "Getopt::Std" : "0",
            "POSIX" : "0",
            "Template" : "0",
            "Try::Tiny" : "0",
            "perl" : "5.016"
         }
      }
   },
   "release_status" : "stable",
   "version" : "0.11"
}

META.yml  view on Meta::CPAN

requires:
  Carp: '0'
  Config::General: '0'
  File::Copy: '0'
  File::HomeDir: '0'
  File::Path: '0'
  File::Spec: '0'
  Getopt::Std: '0'
  POSIX: '0'
  Template: '0'
  Try::Tiny: '0'
  perl: '5.016'
version: '0.11'

Makefile.PL  view on Meta::CPAN

    PREREQ_PM              => {
        'Carp'             => 0,
        'Config::General'  => 0,
        'File::Copy'       => 0,
        'File::HomeDir'    => 0,
        'File::Path'       => 0,
        'File::Spec'       => 0,
        'Getopt::Std'      => 0,
        'POSIX'            => 0,
        'Template'         => 0,
        'Try::Tiny'        => 0,
    },
    TEST_REQUIRES          => {
        'File::HomeDir'    => 0,
        'File::Path'       => 0,
        'File::Spec'       => 0,
        'File::Temp'       => 0,
        'Template'         => 0,
        'Test::More'       => 0,
        'Test::Exception'  => 0,
    },

Makefile.PL  view on Meta::CPAN

my %FallbackPrereqs = (
    'Carp'             => 0,
    'Config::General'  => 0,
    'File::Copy'       => 0,
    'File::HomeDir'    => 0,
    'File::Path'       => 0,
    'File::Spec'       => 0,
    'Getopt::Std'      => 0,
    'POSIX'            => 0,
    'Template'         => 0,
    'Try::Tiny'        => 0,
);

unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
    delete $WriteMakefileArgs{TEST_REQUIRES};
    delete $WriteMakefileArgs{BUILD_REQUIRES};
    $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}

delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
    unless eval { ExtUtils::MakeMaker->VERSION(6.52) };

lib/App/Module/Template.pm  view on Meta::CPAN


use Carp;
use Config::General;
use File::Copy;
use File::HomeDir;
use File::Path qw/make_path/;
use File::Spec;
use Getopt::Std;
use POSIX qw(strftime);
use Template;
use Try::Tiny;

our (@EXPORT_OK, %EXPORT_TAGS);
@EXPORT_OK = qw(
    run
    _get_config
    _get_config_path
    _get_module_dirs
    _get_module_fqfn
    _get_template_path
    _module_path_exists

lib/App/Module/Template.pm  view on Meta::CPAN

=item * File::Path

=item * File::Spec

=item * Getopt::Std

=item * POSIX

=item * Template

=item * Try::Tiny

=back

=head1 INCOMPATIBILITIES

None reported.

=head1 BUGS AND LIMITATIONS

No bugs have been reported.



( run in 0.655 second using v1.01-cache-2.11-cpan-05444aca049 )