Skip to content

Commit

Permalink
Released version 0.04
Browse files Browse the repository at this point in the history
 - Ignore dotfiles and backup files in the watch list #3
  • Loading branch information
Jan Henning Thorsen committed Oct 2, 2016
1 parent 67ed6d0 commit ca2d12c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Changes
@@ -1,7 +1,7 @@
Revision history for perl distribution App-prowess

0.04 Not Released
- Ignore dotfiles and backup files in the watch list
0.04 2016-10-02T20:11:39+0200
- Ignore dotfiles and backup files in the watch list #3

0.03 2015-11-27T11:04:54+0100
- Fix http://cpantesters.org/cpan/report/3259e778-8ee4-11e5-b888-bf4ee0bfc7aa
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -16,5 +16,5 @@ WriteMakefile(
},
BUILD_REQUIRES => {'Test::More' => '0.88'},
PREREQ_PM => {'App::Prove' => '3.35', 'Filesys::Notify::Simple' => '0.12'},
test => {TESTS => 't/*.t'},
test => {TESTS => (-e 'META.yml' ? 't/*.t' : 't/*.t xt/*.t')},
);
4 changes: 3 additions & 1 deletion README
Expand Up @@ -2,7 +2,7 @@ NAME
App::prowess - Watch files for changes and re-run prove

VERSION
0.03
0.04

DESCRIPTION
App::prowess is an application which will watch files for changes and
Expand Down Expand Up @@ -39,3 +39,5 @@ COPYRIGHT AND LICENSE
AUTHOR
Jan Henning Thorsen - "jhthorsen@cpan.org"

Stefan Adams - "stefan@borgia.com"

21 changes: 11 additions & 10 deletions lib/App/prowess.pm
@@ -1,12 +1,20 @@
package App::prowess;
use strict;
use warnings;

our $VERSION = '0.04';

1;

=encoding utf8
=head1 NAME
App::prowess - Watch files for changes and re-run prove
=head1 VERSION
0.03
0.04
=head1 DESCRIPTION
Expand Down Expand Up @@ -42,13 +50,6 @@ is nice if you have tests that doesn't complete.
=back
=cut

use strict;
use warnings;

our $VERSION = '0.03';

=head1 COPYRIGHT AND LICENSE
Copyright (C) 2014, Jan Henning Thorsen
Expand All @@ -60,6 +61,6 @@ the terms of the Artistic License version 2.0.
Jan Henning Thorsen - C<jhthorsen@cpan.org>
=cut
Stefan Adams - C<stefan@borgia.com>
1;
=cut

0 comments on commit ca2d12c

Please sign in to comment.