Changeset 372

Show
Ignore:
Timestamp:
06/01/08 23:00:13 (3 months ago)
Author:
ingy
Message:
v0.11
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/ingy/XXX/Changes

    r226 r372  
     1--- 
     2version: 0.11 
     3date:    Sun Jun  1 22:28:12 PDT 2008 
     4changes: 
     5- Add YYY.pm to get around CPAN indexing. 
    16--- 
    27version: 0.10 
  • trunk/src/ingy/XXX/MANIFEST

    r226 r372  
    99inc/Module/Install/WriteAll.pm 
    1010lib/XXX.pm 
     11lib/YYY.pm 
    1112Makefile.PL 
    1213MANIFEST                        This list of files 
     
    1415README 
    1516t/test.t 
     17t/yyy.t 
  • trunk/src/ingy/XXX/README

    r226 r372  
    3939        arguments. This means you can stick it in the middle of expressions. 
    4040 
    41         mnemonic: YYY == Why Why Why or YAML YAML YAML 
     41        mnemonic: YYY == Why Why Why??? or YAML YAML YAML 
    4242 
    4343    ZZZ ZZZ will Carp::confess a dump of its arguments. 
     
    4646        zzzzzzzz 
    4747 
     48NOTE 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 
    4858AUTHOR 
    49     Ingy döt Net <ingy@cpan.org> 
     59    Ingy döt Net <ingy@cpan.org> 
    5060 
    5161COPYRIGHT 
    52     Copyright (c) 2006. Ingy döt Net. All rights reserved
     62    Copyright (c) 2006, 2008. Ingy döt Net
    5363 
    5464    This program is free software; you can redistribute it and/or modify it 
  • trunk/src/ingy/XXX/lib/XXX.pm

    r226 r372  
    33use strict; 
    44use warnings; 
     5no warnings 'redefine'; 
    56use base 'Exporter'; 
    67 
    7 our $VERSION = '0.10'; 
     8
     9    no strict 'refs'; 
     10    *{"YYY::"} = *{"XXX::"}; 
     11
     12 
     13our $VERSION = '0.11'; 
    814our @EXPORT = qw( WWW XXX YYY ZZZ ); 
    915 
     
    1420    for my $arg (@args) { 
    1521        $dump = 'dumper' 
    16           if $arg eq '-dumper'
     22          if $arg =~ /^-dumper$/i
    1723        $dump = 'yaml' 
    18           if $arg eq '-yaml'
     24          if $arg =~ /^-yaml$/i
    1925    } 
    2026    @_ = ($package); 
     
    5965 
    60661; 
     67 
     68=encoding utf8 
    6169 
    6270=head1 NAME 
     
    112120arguments. This means you can stick it in the middle of expressions. 
    113121 
    114 mnemonic: YYY == Why Why Why or YAML YAML YAML 
     122mnemonic: YYY == Why Why Why??? or YAML YAML YAML 
    115123 
    116124=item ZZZ 
     
    122130=back 
    123131 
     132=head1 NOTE FOR INSTALLING XXX 
     133 
     134At this time CPAN indexes XXX.pm to some other module distribution that 
     135doesn't even have an XXX.pm module. Oh the wonders of CPAN. To install 
     136this module, ask for YYY.pm instead. Something like this should work: 
     137 
     138    sudo cpan YYY 
     139 
     140This will install XXX.pm and YYY.pm (which is an exact copy of XXX.pm). 
     141You can use either one. :) 
     142 
    124143=head1 AUTHOR 
    125144 
     
    128147=head1 COPYRIGHT 
    129148 
    130 Copyright (c) 2006. Ingy döt Net. All rights reserved
     149Copyright (c) 2006, 2008. Ingy döt Net
    131150 
    132151This program is free software; you can redistribute it and/or modify it