Acme-Gosub
view release on metacpan or search on metacpan
0.1.6 2015-06-19
- Update old E-mail address.
- Remove \t from the distribution.
0.1.5 2014-01-25
- Add a minimal version of perl.
- Kwalitee.
- Add t/style-trailing-space.t
- Remove trailing space.
- Add t/cpan-changes.t
- Check for CPAN changes validity.
0.1.4 2009-07-01
- Enhanced Build.PL : dist_author, keywords and resources.
0.1.3 2008-03-14
- Added the examples/japh.pl file.
- Added the Build.PL for kwalitee and better maintenance.
- Makefile.PL is now generated from it.
- Added t/pod-coverage.t and added full POD coverage
to lib/Acme/Gosub.pm
META.json
META.yml # Will be created by "make dist"
README
TODO
examples/japh.pl
lib/Acme/Gosub.pm
scripts/bump-version-number.pl
scripts/tag-release.pl
t/00-load.t
t/01-basic.t
t/cpan-changes.t
t/pod-coverage.t
t/pod.t
t/style-trailing-space.t
lib/Acme/Gosub.pm view on Meta::CPAN
The function's gosub recursion stack is function-wide and so different
instances of the function will all use the same recursion stack. Hopefully
it will be fixed in later versions.
I am not sure whether this will work on dynamic functions (a.k.a closures).
Please report any bugs or feature requests to
C<bug-acme-gosub@rt.cpan.org>, or through the web interface at
L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Acme-Gosub>.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
=head1 ACKNOWLEDGEMENTS
=head1 COPYRIGHT & LICENSE
Copyright (c) 1997-2003, Damian Conway. All Rights Reserved.
Modified by Shlomi Fish, 2005 - all rights disclaimed.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
t/cpan-changes.t view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
eval 'use Test::CPAN::Changes';
plan skip_all => 'Test::CPAN::Changes required for this test' if $@;
changes_ok();
( run in 2.318 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )