Acme-Cow-Interpreter

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

 * Update author information.

 * Remove references to the CPAN RT as it is soon to be shut down.

 * Add reference to the GitHub issue tracker.

 * Replace t/02-pod.t by xt/release/pod-syntax.t.

 * Replace t/03-pod-coverage.t by xt/release/pod-coverage.t.

 * Add new test files xt/release/cpan-changes.t, xt/release/kwalitee.t,
   xt/release/portability.t, xt/release/synopsis.t, xt/release/test-version.t,
   xt/release/unused-vars.t, xt/release/version.t, and xt/release/whitespaces.t.

 * Remove Emacs variables from various files.

 * Add new file README.md for

0.01 2008-02-29

 * original version; created by h2xs 1.23 with options

MANIFEST  view on Meta::CPAN

examples/hello.cow
lib/Acme/Cow/Interpreter.pm
Makefile.PL
MANIFEST			This list of files
MANIFEST.SKIP
README
README.md
t/00-signature.t
t/01-load.t
t/10-methods.t
xt/release/cpan-changes.t
xt/release/kwalitee.t
xt/release/pod-coverage.t
xt/release/pod-syntax.t
xt/release/portability.t
xt/release/synopsis.t
xt/release/test-version.t
xt/release/unused-vars.t
xt/release/version.t
xt/release/whitespaces.t
META.yml                                 Module YAML meta-data (added by MakeMaker)

SIGNATURE  view on Meta::CPAN

SHA256 4970b69a8e21d9c137cfeaa9bef4710b6b370dc285c273a77bb62c6ffc4a4f1c bin/cow.c
SHA256 6b628c5fa3697d39572d62ebac4da53ff2e247c3d6ffe7193a52f9559009d86e bin/cow.pl
SHA256 e9b8ea60e4fca6cda8ec8fad9be7ffe40df699c1b4d3b29278dbb7d406609b9b bin/cowtidy.pl
SHA256 a77a247e76768fc408e27507b6744e0588d647bd337a193117256f4ea9851e73 bin/text2cow.pl
SHA256 976fd77e3d1ae0ea40905081d770fafcc306eff798b4bb8cd2d7545bb424496b examples/fibonacci.cow
SHA256 19477237b2ded77ae10fb695d7dd3e721b7db68c3ef234248f78a85d9bb67ed0 examples/hello.cow
SHA256 4f6526159c7f2bd9ecc99bb018cfa1828a7cc4d956bb71f9ab0dd67e46720f68 lib/Acme/Cow/Interpreter.pm
SHA256 b12a6e43af468b6c0967784e70b02a07ebb92d085e947040c5d81ed34a713758 t/00-signature.t
SHA256 00d431383df09a685a823e909bdc8aa1edfe3d6b7a2391a58d659ed0a8035ec4 t/01-load.t
SHA256 4deedbbd406728efea69b48775429736bffdd4f380747e2feb4124e1f8ab37f5 t/10-methods.t
SHA256 3895f91b6c6a050c93926abafd9db783f70a0ea96b5a16880f19bea536e9955e xt/release/cpan-changes.t
SHA256 3f3c44f4c1d2b7bd15dafc9e372745b71dde066780c01e43328ae708f876b799 xt/release/kwalitee.t
SHA256 4a0f3dda9cb3ca48fd8a646eaa7a584c74741eb990be5a85f44e172bb0ac4000 xt/release/pod-coverage.t
SHA256 719727b9d070d578d1b260726488405a50297cedad0caf1bf172ddcea3a0d4ed xt/release/pod-syntax.t
SHA256 cf700ae02d47468fdfe1df5d1eb56457319750a9f5022832da54428d54242d0c xt/release/portability.t
SHA256 365f0d117b1555121cc55e247d1e12db946592e3ab060303d40e784d1c0d543b xt/release/synopsis.t
SHA256 d326c0695d9453313ee410b4ee7e81d01f0326e2891f39d2887c2388de8c5afd xt/release/test-version.t
SHA256 4eccf03fbe993f81dae7dbd4ffe00e49f59666e7c2612954a454c31fe3e33b6c xt/release/unused-vars.t
SHA256 d326c0695d9453313ee410b4ee7e81d01f0326e2891f39d2887c2388de8c5afd xt/release/version.t
SHA256 2542dc5a4ede594e1ff8632dc8661a90b4684aabe452b3341797857426b2aeef xt/release/whitespaces.t
-----BEGIN PGP SIGNATURE-----

bin/cow.c  view on Meta::CPAN

  `/usr/local/bin/cow.pl' and compile this script with, e.g.,

      gcc -Wall -o cow cow.c

  and move the resulting executable program to `/usr/local/bin/cow'
  og `/usr/local/bin/cow.exe', depending on your operating
  system. Then you should be able to put `#!/usr/local/bin/cow' on
  top of your Cow programs.

  If you rename the Perl program to something other than
  `/usr/local/bin/cow.pl', you must change the code below
  accordingly.
*/

#include <unistd.h>     /* for execv */
#include <stdio.h>      /* for stderr */
#include <errno.h>      /* for errno */
#include <string.h>     /* for strerror */
#include <stdlib.h>     /* for EXIT_FAILURE */

extern int main(int argc, char **argv);

xt/release/cpan-changes.t  view on Meta::CPAN

        print "1..0 # SKIP these tests are for release candidate testing";
        exit;
    }
}

use strict;
use warnings;

use Test::CPAN::Changes;

changes_ok();



( run in 1.259 second using v1.01-cache-2.11-cpan-5dc5da66d9d )