[Rt-commit] r3422 - in Data-iCal: . lib/Data lib/Data/iCal t
jesse at bestpractical.com
jesse at bestpractical.com
Thu Jul 7 22:45:34 EDT 2005
Author: jesse
Date: Thu Jul 7 22:45:33 2005
New Revision: 3422
Modified:
Data-iCal/ (props changed)
Data-iCal/Changes
Data-iCal/META.yml
Data-iCal/Makefile.PL
Data-iCal/README
Data-iCal/lib/Data/iCal.pm
Data-iCal/lib/Data/iCal/Entry.pm
Data-iCal/lib/Data/iCal/Property.pm
Data-iCal/lib/Data/iCal/Todo.pm
Data-iCal/t/00.load.t
Data-iCal/t/01.simplegen.t
Log:
r22362 at hualien: jesse | 2005-07-07 22:43:04 -0400
* iCal -> ICal
Modified: Data-iCal/Changes
==============================================================================
--- Data-iCal/Changes (original)
+++ Data-iCal/Changes Thu Jul 7 22:45:33 2005
@@ -1,4 +1,4 @@
-Revision history for Data-iCal-
+Revision history for Data-ICal-
0.0.1 Thu Jul 7 18:47:57 2005
Initial release.
Modified: Data-iCal/META.yml
==============================================================================
--- Data-iCal/META.yml (original)
+++ Data-iCal/META.yml Thu Jul 7 22:45:33 2005
@@ -1,4 +1,4 @@
-name: Data-iCal
+name: Data-ICal
version: 0.001
abstract: [One line description of module's purpose here]
author: Jesse Vincent <jesse at bestpractical.com>
Modified: Data-iCal/Makefile.PL
==============================================================================
--- Data-iCal/Makefile.PL (original)
+++ Data-iCal/Makefile.PL Thu Jul 7 22:45:33 2005
@@ -1,9 +1,9 @@
use inc::Module::Install;
-name ('Data-iCal');
+name ('Data-ICal');
author ('Jesse Vincent <jesse at bestpractical.com>');
-version_from ('lib/Data/iCal.pm');
-abstract_from('lib/Data/iCal.pm');
+version_from ('lib/Data/ICal.pm');
+abstract_from('lib/Data/ICal.pm');
license('perl');
requires('Test::More');
Modified: Data-iCal/README
==============================================================================
--- Data-iCal/README (original)
+++ Data-iCal/README Thu Jul 7 22:45:33 2005
@@ -1,4 +1,4 @@
-Data-iCal- version 0.0.1
+Data-ICal- version 0.0.1
[ REPLACE THIS...
Modified: Data-iCal/lib/Data/iCal.pm
==============================================================================
--- Data-iCal/lib/Data/iCal.pm (original)
+++ Data-iCal/lib/Data/iCal.pm Thu Jul 7 22:45:33 2005
@@ -1,7 +1,7 @@
use warnings;
use strict;
-package Data::iCal;
+package Data::ICal;
our $VERSION = '0.001';
@@ -31,7 +31,7 @@
=head2 entries
-Returns a ref to the array of entries in this Data::iCal object
+Returns a ref to the array of entries in this Data::ICal object
=cut
@@ -76,7 +76,7 @@
sub product_id {
my $self = shift;
- return "Data::iCal $VERSION";
+ return "Data::ICal $VERSION";
}
@@ -86,12 +86,12 @@
=head1 NAME
-Data::iCal - [One line description of module's purpose here]
+Data::ICal - [One line description of module's purpose here]
=head1 SYNOPSIS
- use Data::iCal;
+ use Data::ICal;
=for author to fill in:
Brief code example(s) here showing commonest usage(s).
@@ -147,7 +147,7 @@
that can be set. These descriptions must also include details of any
configuration language used.
-Data::iCal requires no configuration files or environment variables.
+Data::ICal requires no configuration files or environment variables.
=head1 DEPENDENCIES
Modified: Data-iCal/lib/Data/iCal/Entry.pm
==============================================================================
--- Data-iCal/lib/Data/iCal/Entry.pm (original)
+++ Data-iCal/lib/Data/iCal/Entry.pm Thu Jul 7 22:45:33 2005
@@ -1,8 +1,8 @@
use warnings;
use strict;
-package Data::iCal::Entry;
-use Data::iCal::Property;
+package Data::ICal::Entry;
+use Data::ICal::Property;
sub new {
@@ -33,7 +33,7 @@
my $self = shift;
my $prop = shift;
my $val = shift;
- push @{$self->{'properties'}}, Data::iCal::Property->new($prop => $val);
+ push @{$self->{'properties'}}, Data::ICal::Property->new($prop => $val);
}
sub add_properties {
Modified: Data-iCal/lib/Data/iCal/Property.pm
==============================================================================
--- Data-iCal/lib/Data/iCal/Property.pm (original)
+++ Data-iCal/lib/Data/iCal/Property.pm Thu Jul 7 22:45:33 2005
@@ -1,7 +1,7 @@
use warnings;
use strict;
-package Data::iCal::Property;
+package Data::ICal::Property;
use base qw/Class::Accessor/;
Modified: Data-iCal/lib/Data/iCal/Todo.pm
==============================================================================
--- Data-iCal/lib/Data/iCal/Todo.pm (original)
+++ Data-iCal/lib/Data/iCal/Todo.pm Thu Jul 7 22:45:33 2005
@@ -1,9 +1,9 @@
use warnings;
use strict;
-package Data::iCal::Todo;
+package Data::ICal::Todo;
-use base qw/Data::iCal::Entry/;
+use base qw/Data::ICal::Entry/;
sub ical_entry_type { 'VTODO' }
sub optional_unique_properties {
Modified: Data-iCal/t/00.load.t
==============================================================================
--- Data-iCal/t/00.load.t (original)
+++ Data-iCal/t/00.load.t Thu Jul 7 22:45:33 2005
@@ -1,7 +1,7 @@
use Test::More tests => 1;
BEGIN {
-use_ok( 'Data::iCal' );
+use_ok( 'Data::ICal' );
}
-diag( "Testing Data::iCal $Data::iCal::Generator::VERSION" );
+diag( "Testing Data::ICal $Data::ICal::Generator::VERSION" );
Modified: Data-iCal/t/01.simplegen.t
==============================================================================
--- Data-iCal/t/01.simplegen.t (original)
+++ Data-iCal/t/01.simplegen.t Thu Jul 7 22:45:33 2005
@@ -5,21 +5,21 @@
use Test::More tests => 15;
-use_ok('Data::iCal');
+use_ok('Data::ICal');
-my $s = Data::iCal->new();
+my $s = Data::ICal->new();
-isa_ok($s, 'Data::iCal');
+isa_ok($s, 'Data::ICal');
can_ok($s, 'as_string');
can_ok($s, 'add_entry');
-use_ok('Data::iCal::Todo');
+use_ok('Data::ICal::Todo');
-my $todo = Data::iCal::Todo->new();
-isa_ok($todo, 'Data::iCal::Entry');
+my $todo = Data::ICal::Todo->new();
+isa_ok($todo, 'Data::ICal::Entry');
can_ok($todo, 'add_property');
More information about the Rt-commit
mailing list