App-zoo

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "ExtUtils::MakeMaker" : "0"
         }
      },
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "DateTime" : "0.37",
            "perl" : "5.008004",
            "strict" : "0",
            "warnings" : "0"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "repository" : {
         "type" : "git",

META.yml  view on Meta::CPAN

license: open_source
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: App-zoo
no_index:
  directory:
    - t
    - inc
requires:
  DateTime: '0.37'
  perl: '5.008004'
  strict: '0'
  warnings: '0'
resources:
  repository: https://github.com/117v2/cfwp.git
version: 0.02
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

Makefile.PL  view on Meta::CPAN

  NAME             => 'App::zoo',
  VERSION_FROM     => 'lib/App/zoo.pm',
  ABSTRACT_FROM    => 'lib/App/zoo.pm',
  AUTHOR           => 'GaoangLau',
  LICENSE          => 'freebsd',
  MIN_PERL_VERSION => '5.008004',
  EXE_FILES        => [@scripts],
  PREREQ_PM        => {
    'strict'   => 0,
    'warnings' => 0,
    'DateTime' => '0.37',
  },
  (eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
      'meta-spec' => { version => 2 },
      resources => {
          repository => {
              type => 'git',
              url  => 'https://github.com/117v2/cfwp.git',
              web  => 'https://github.com/117v2/cfwp',
          },
      }})

script/zoo  view on Meta::CPAN

#!perl
use strict;
use warnings;
use DateTime;

my $text = 'bar';
my $dt = DateTime->now;

if ($dt->mon == 1 && $dt->day == 31) {
   $text = reverse $text;
}

print "$text\n";
exit 0;

=head1 NAME



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