Changeset 372
- Timestamp:
- 06/01/08 23:00:13 (3 months ago)
- Files:
-
- trunk/src/ingy/XXX/Changes (modified) (1 diff)
- trunk/src/ingy/XXX/MANIFEST (modified) (2 diffs)
- trunk/src/ingy/XXX/README (modified) (2 diffs)
- trunk/src/ingy/XXX/lib/XXX.pm (modified) (6 diffs)
- trunk/src/ingy/XXX/lib/YYY.pm (added)
- trunk/src/ingy/XXX/t/yyy.t (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/ingy/XXX/Changes
r226 r372 1 --- 2 version: 0.11 3 date: Sun Jun 1 22:28:12 PDT 2008 4 changes: 5 - Add YYY.pm to get around CPAN indexing. 1 6 --- 2 7 version: 0.10 trunk/src/ingy/XXX/MANIFEST
r226 r372 9 9 inc/Module/Install/WriteAll.pm 10 10 lib/XXX.pm 11 lib/YYY.pm 11 12 Makefile.PL 12 13 MANIFEST This list of files … … 14 15 README 15 16 t/test.t 17 t/yyy.t trunk/src/ingy/XXX/README
r226 r372 39 39 arguments. This means you can stick it in the middle of expressions. 40 40 41 mnemonic: YYY == Why Why Why or YAML YAML YAML41 mnemonic: YYY == Why Why Why??? or YAML YAML YAML 42 42 43 43 ZZZ ZZZ will Carp::confess a dump of its arguments. … … 46 46 zzzzzzzz 47 47 48 NOTE FOR INSTALLING XXX 49 At this time CPAN indexes XXX.pm to some other module distribution that 50 doesn't even have an XXX.pm module. Oh the wonders of CPAN. To install 51 this module, ask for YYY.pm instead. Something like this should work: 52 53 sudo cpan YYY 54 55 This will install XXX.pm and YYY.pm (which is an exact copy of XXX.pm). 56 You can use either one. :) 57 48 58 AUTHOR 49 Ingy d öt Net <ingy@cpan.org>59 Ingy döt Net <ingy@cpan.org> 50 60 51 61 COPYRIGHT 52 Copyright (c) 2006 . Ingy döt Net. All rights reserved.62 Copyright (c) 2006, 2008. Ingy döt Net. 53 63 54 64 This program is free software; you can redistribute it and/or modify it trunk/src/ingy/XXX/lib/XXX.pm
r226 r372 3 3 use strict; 4 4 use warnings; 5 no warnings 'redefine'; 5 6 use base 'Exporter'; 6 7 7 our $VERSION = '0.10'; 8 { 9 no strict 'refs'; 10 *{"YYY::"} = *{"XXX::"}; 11 } 12 13 our $VERSION = '0.11'; 8 14 our @EXPORT = qw( WWW XXX YYY ZZZ ); 9 15 … … 14 20 for my $arg (@args) { 15 21 $dump = 'dumper' 16 if $arg eq '-dumper';22 if $arg =~ /^-dumper$/i; 17 23 $dump = 'yaml' 18 if $arg eq '-yaml';24 if $arg =~ /^-yaml$/i; 19 25 } 20 26 @_ = ($package); … … 59 65 60 66 1; 67 68 =encoding utf8 61 69 62 70 =head1 NAME … … 112 120 arguments. This means you can stick it in the middle of expressions. 113 121 114 mnemonic: YYY == Why Why Why or YAML YAML YAML122 mnemonic: YYY == Why Why Why??? or YAML YAML YAML 115 123 116 124 =item ZZZ … … 122 130 =back 123 131 132 =head1 NOTE FOR INSTALLING XXX 133 134 At this time CPAN indexes XXX.pm to some other module distribution that 135 doesn't even have an XXX.pm module. Oh the wonders of CPAN. To install 136 this module, ask for YYY.pm instead. Something like this should work: 137 138 sudo cpan YYY 139 140 This will install XXX.pm and YYY.pm (which is an exact copy of XXX.pm). 141 You can use either one. :) 142 124 143 =head1 AUTHOR 125 144 … … 128 147 =head1 COPYRIGHT 129 148 130 Copyright (c) 2006 . Ingy döt Net. All rights reserved.149 Copyright (c) 2006, 2008. Ingy döt Net. 131 150 132 151 This program is free software; you can redistribute it and/or modify it
