Show
Ignore:
Timestamp:
09/15/07 17:33:36 (16 months ago)
Author:
holidays-l
Message:

version up

Location:
lang/perl/WebService-YouTube/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/WebService-YouTube/trunk

    • Property svn:ignore
      •  

        old new  
        55inc 
        66Makefile 
         7Makefile.old 
        78MANIFEST 
         9MANIFEST.bak 
        810META.yml 
        911pm_to_blib 
        10 WebService-YouTube-v* 
         12WebService-YouTube-*.tar.* 
  • lang/perl/WebService-YouTube/trunk/lib/WebService/YouTube/Videos.pm

    r109 r176  
    55use strict; 
    66use warnings; 
    7 use version; our $VERSION = qv('1.0.1'); 
     7use version; our $VERSION = qv('1.0.2'); 
    88 
    99use Carp; 
     
    1818 
    1919sub new { 
    20     my $class = shift; 
    21  
    22     my $self = $class->SUPER::new(@_); 
     20    my ( $class, @args ) = @_; 
     21 
     22    my $self = $class->SUPER::new(@args); 
    2323    if ( !$self->dev_id ) { 
    2424        croak 'dev_id is required'; 
     
    140140    my $self = shift; 
    141141 
    142     my $uri = 
    143       WebService::YouTube::Util->rest_uri( $self->dev_id, 
     142    my $uri = WebService::YouTube::Util->rest_uri( $self->dev_id, 
    144143        'youtube.videos.list_featured' ); 
    145144    my $res = $self->ua->get($uri); 
     
    161160=head1 VERSION 
    162161 
    163 This document describes WebService::YouTube::Videos version 1.0.1 
     162This document describes WebService::YouTube::Videos version 1.0.2 
    164163 
    165164=head1 SYNOPSIS 
     
    300299=head1 LICENSE AND COPYRIGHT 
    301300 
    302 Copyright 2006, Hironori Yoshida <yoshida@cpan.org>. All rights reserved. 
    303  
    304 This program is free software; you can redistribute it and/or modify it 
    305 under the same terms as Perl itself. See L<perlartistic>. 
     301This module is free software; you can redistribute it and/or 
     302modify it under the same terms as Perl itself. See L<perlartistic>. 
    306303 
    307304=cut