Changeset 12414

Show
Ignore:
Timestamp:
05/26/08 05:21:17 (5 years ago)
Author:
hanekomu
Message:

r1741@88-117-77-175: marcel | 2008-05-24 08:03:35 +0200

  • moooooooooooooose

Location:
lang/perl/Games-Go-Rank/trunk
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Games-Go-Rank/trunk

  • lang/perl/Games-Go-Rank/trunk/Changes

    r9723 r12414  
    77      - set the version to 0.05 
    88      - moved generated documentation of interited methods to after documentation of this class' methods so the manpage is more readable 
    9     date: 2008-01-31T16:01:30Z 
     9      - moooooooooooooose 
     10    date: 2008-05-24T06:03:33Z 
    1011    tags: [] 
    1112    version: 0.05 
  • lang/perl/Games-Go-Rank/trunk/Makefile.PL

    r9723 r12414  
    66perl_version '5.006'; 
    77 
    8 requires 'Class::Accessor::Complex' => '0.12'; 
     8requires 'Moose' => '0.44'; 
    99 
    1010build_requires 'Test::More' => '0.70'; 
  • lang/perl/Games-Go-Rank/trunk/lib/Games/Go/Rank.pm

    r9723 r12414  
    11package Games::Go::Rank; 
    22 
    3 use warnings; 
    4 use strict; 
    5  
     3use Moose; 
    64 
    75our $VERSION = '0.05'; 
    8  
    9  
    10 use base 'Class::Accessor::Complex'; 
    11  
    126 
    137use overload 
     
    159    '<=>' => 'num_cmp'; 
    1610 
    17  
    18 __PACKAGE__ 
    19     ->mk_new 
    20     ->mk_accessors(qw(rank)); 
     11has 'rank' => (is => 'rw'); 
    2112 
    2213