Changeset 21566 for lang/perl/String-IRC

Show
Ignore:
Timestamp:
10/18/08 03:14:36 (5 years ago)
Author:
hirose31
Message:

fixed: #40039: Incorrect color name

Location:
lang/perl/String-IRC/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/String-IRC/trunk/Changes

    r10701 r21566  
    11Revision history for String-IRC 
     2 
     30.03  2008-10-18 
     4  * typo fixed. 
     5    http://rt.cpan.org/Public/Bug/Display.html?id=40039 
    26 
    370.02  2007-02-23 
  • lang/perl/String-IRC/trunk/lib/String/IRC.pm

    r10701 r21566  
    55use Carp; 
    66 
    7 our $VERSION = '0.02'; 
     7our $VERSION = '0.03'; 
    88 
    99use overload ( 
     
    3838    7  => [qw(orange       olive)], 
    3939    8  => [qw(yellow)], 
    40     9  => [qw(lightt_green lime)], 
     40    9  => [qw(light_green lime)], 
    4141    10 => [qw(teal)], 
    4242    11 => [qw(light_cyan   cyan aqua)], 
     
    119119  orange olive 
    120120  yellow 
    121   lightt_green lime 
     121  light_green lime 
    122122  teal 
    123123  light_cyan cyan aqua 
  • lang/perl/String-IRC/trunk/t/91.pod-coverage.t

    • Property svn:executable set to *
    r10701 r21566  
    44eval "use Test::Pod::Coverage 1.04"; 
    55plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@; 
    6 my $trustme = { trustme => [qr/^(white|black|blue|navy|green|red|brown|maroon|purple|orange|olive|yellow|lightt_green|lime|teal|light_cyan|cyan|aqua|light_blue|royal|pink|light_purple|fuchsia|grey|light_grey|silver)$/] }; 
     6my $trustme = { trustme => [qr/^(white|black|blue|navy|green|red|brown|maroon|purple|orange|olive|yellow|light_green|lime|teal|light_cyan|cyan|aqua|light_blue|royal|pink|light_purple|fuchsia|grey|light_grey|silver)$/] }; 
    77all_pod_coverage_ok($trustme);