Skip to content

Commit

Permalink
CPAN Release 0.41
Browse files Browse the repository at this point in the history
- Finish doc to Swim
  • Loading branch information
ingydotnet committed Aug 4, 2014
1 parent c0e3d16 commit 2e70d60
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 48 deletions.
5 changes: 5 additions & 0 deletions Changes
@@ -1,4 +1,9 @@
---
version: 0.41
date: Mon Aug 4 00:59:19 PDT 2014
changes:
- Finish doc to Swim
---
version: 0.40
date: Mon Aug 4 00:42:55 PDT 2014
changes:
Expand Down
2 changes: 1 addition & 1 deletion Meta
@@ -1,7 +1,7 @@
=meta: 0.0.1

name: TestML
version: 0.40
version: 0.41
abstract: A Generic Software Testing Meta Language
homepage: http://testml.org

Expand Down
42 changes: 42 additions & 0 deletions doc/Module/Install/TestML.swim
@@ -0,0 +1,42 @@
Module::Install::TestML
=======================

Module::Install Support for TestML

= Synopsis

use inc::Module::Install;

name 'Foo';
all_from 'lib/Foo.pm';

use_testml_tap;

WriteAll;

= Description

This module adds the `use_testml_tap` directive to Module::Install.

Now you can get full TestML support for your module with no external
dependency on TestML.

Just add this line to your Makefile.PL:

use_testml_tap;

That's it. Really. Now Test::Base is bundled into your module, so that it is
no longer any burden on the person installing your module.

= Author

Ingy döt Net <ingy@cpan.org>

= Copyright

Copyright 2009-2014. Ingy döt Net.

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

See http://www.perl.com/perl/misc/Artistic.html
46 changes: 0 additions & 46 deletions lib/Module/Install/TestML.pm
Expand Up @@ -57,49 +57,3 @@ sub testml_setup {
}

1;

=encoding utf8
=head1 NAME
Module::Install::TestML - Module::Install Support for TestML
=head1 SYNOPSIS
use inc::Module::Install;
name 'Foo';
all_from 'lib/Foo.pm';
use_testml_tap;
WriteAll;
=head1 DESCRIPTION
This module adds the C<use_testml_tap> directive to Module::Install.
Now you can get full TestML support for your module with no external
dependency on TestML.
Just add this line to your Makefile.PL:
use_testml_tap;
That's it. Really. Now Test::Base is bundled into your module, so that
it is no longer any burden on the person installing your module.
=head1 AUTHOR
Ingy döt Net <ingy@cpan.org>
=head1 COPYRIGHT
Copyright (c) 2009-2014. Ingy döt Net.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
See L<http://www.perl.com/perl/misc/Artistic.html>
=cut
2 changes: 1 addition & 1 deletion lib/TestML.pm
@@ -1,7 +1,7 @@
package TestML;

use TestML::Base;
our $VERSION = '0.40';
our $VERSION = '0.41';

has runtime => ();
has compiler => ();
Expand Down

0 comments on commit 2e70d60

Please sign in to comment.