Changeset 8746

Show
Ignore:
Timestamp:
04/03/08 16:29:23 (6 months ago)
Author:
yusukebe
Message:

CPAN に うpる用に変更している

Location:
lang/perl/WebService-Simple/trunk
Files:
6 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/WebService-Simple/trunk/Build.PL

    r8550 r8746  
    99    dist_version_from   => 'lib/WebService/Simple.pm', 
    1010    requires => { 
    11         'Test::More' => 0, 
    12     }, 
     11        'Test::More'     => 0, 
     12        'URI::Escape'    => 0, 
     13        'LWP::UserAgent' => 0, 
     14        'XML::Simple'    => 0, 
     15      }, 
    1316    add_to_cleanup      => [ 'WebService-Simple-*' ], 
    1417); 
  • lang/perl/WebService-Simple/trunk/Changes

    r8550 r8746  
    11Revision history for WebService-Simple 
    22 
     30.0.2  Thu Apr 03 16:13:00 2008 
     4       - Added CHACHING 
    350.0.1  Thu Mar 27 10:06:09 2008 
    4        Initial release. 
    5  
     6       - original version 
  • lang/perl/WebService-Simple/trunk/MANIFEST

    r8550 r8746  
    1010t/pod-coverage.t 
    1111t/pod.t 
     12example/flickr_echo.pl 
     13example/flickr_search.pl 
     14example/lingr.pl 
  • lang/perl/WebService-Simple/trunk/Makefile.PL

    r8550 r8746  
    1010    PL_FILES            => {}, 
    1111    PREREQ_PM => { 
    12         'Test::More' => 0, 
    13     }, 
     12        'Test::More'     => 0, 
     13        'URI::Escape'    => 0, 
     14        'LWP::UserAgent' => 0, 
     15        'XML::Simple'    => 0, 
     16      }, 
    1417    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, 
    1518    clean               => { FILES => 'WebService-Simple-*' }, 
  • lang/perl/WebService-Simple/trunk/README

    r8550 r8746  
    1 WebService-Simple version 0.0.1 
    2  
    3 [ REPLACE THIS... 
    4  
    5   The README is used to introduce the module and provide instructions on 
    6   how to install the module, any machine dependencies it may have (for 
    7   example C compilers and installed libraries) and any other information 
    8   that should be understood before the module is installed. 
    9  
    10   A README file is required for CPAN modules since CPAN extracts the 
    11   README file from a module distribution so that people browsing the 
    12   archive can use it get an idea of the modules uses. It is usually a 
    13   good idea to provide version information here so that people can 
    14   decide whether fixes for the module are worth downloading. 
    15 ] 
    16  
     1WebService-Simple version 0.0.2 
    172 
    183INSTALLATION 
     
    3217        ./Build install 
    3318 
    34  
    35 DEPENDENCIES 
    36  
    37 None. 
    38  
    39  
    4019COPYRIGHT AND LICENCE 
    4120 
  • lang/perl/WebService-Simple/trunk/lib/WebService/Simple.pm

    r8741 r8746  
    66use URI::Escape; 
    77use LWP::UserAgent; 
    8 use URI::Escape; 
    98use WebService::Simple::Response; 
    109