Changeset 5004 for lang/perl/Win32-FindWindow
- Timestamp:
- 01/20/08 02:25:13 (5 years ago)
- Location:
- lang/perl/Win32-FindWindow/trunk
- Files:
-
- 1 added
- 6 modified
-
. (modified) (1 prop)
-
.shipit (modified) (1 diff)
-
.svnignore (added)
-
MANIFEST (modified) (1 diff)
-
MANIFEST.SKIP (modified) (1 diff)
-
lib/Win32/FindWindow.pm (modified) (2 diffs)
-
t/00_compile.t (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/Win32-FindWindow/trunk
-
lang/perl/Win32-FindWindow/trunk/.shipit
r4992 r5004 1 steps = CommitMessageWrap, FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit, Tag, MakeDist, UploadCPAN 1 #steps = CommitMessageWrap, FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit, Tag, MakeDist, UploadCPAN 2 steps = CommitMessageWrap, FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit 2 3 svk.tagpattern = release-%v 3 4 commit_message.format = lang/perl/Win32-FindWindow: %msg -
lang/perl/Win32-FindWindow/trunk/MANIFEST
r4992 r5004 13 13 Makefile.PL 14 14 MANIFEST This list of files 15 META.yml15 #META.yml 16 16 README 17 17 t/00_compile.t -
lang/perl/Win32-FindWindow/trunk/MANIFEST.SKIP
r4992 r5004 17 17 ^[^/]+\.yaml$ 18 18 ^[^/]+\.pl$ 19 ^\.shipit$ 19 \.shipit 20 \.svnignore 21 ^inc/ -
lang/perl/Win32-FindWindow/trunk/lib/Win32/FindWindow.pm
r4992 r5004 14 14 use constant PROCESS_QUERY_INFORMATION => 0x0400; 15 15 16 our $VERSION = 0.01;16 our $VERSION = '0.01'; 17 17 18 18 our @EXPORT = qw(find_window find_windows); … … 220 220 221 221 222 =head1 LICENCE AND COPYRIGHT 223 224 Copyright (c) 2008, Michiya Honda C<< <pia@cpan.org> >>. All rights reserved. 225 226 This module is free software; you can redistribute it and/or 227 modify it under the same terms as Perl itself. See L<perlartistic>. 222 =head1 LICENCE 223 224 This library is free software, licensed under the same terms with Perl. 225 See L<perlartistic>. -
lang/perl/Win32-FindWindow/trunk/t/00_compile.t
r4992 r5004 2 2 use Test::More tests => 1; 3 3 4 BEGIN { use_ok 'Win32::FindWindow' } 4 BEGIN { 5 if ($^O eq 'MSWin32') { 6 use_ok 'Win32::FindWindow'; 7 } 8 else { 9 ok("skip unless MSWin32"); 10 } 11 }
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)