[Bps-public-commit] r19755 - in Net-Google-Code/trunk: lib/Net/Google lib/Net/Google/Code
sunnavy at bestpractical.com
sunnavy at bestpractical.com
Tue May 26 08:58:25 EDT 2009
Author: sunnavy
Date: Tue May 26 08:58:25 2009
New Revision: 19755
Added:
Net-Google-Code/trunk/lib/Net/Google/Code/TypicalRoles.pm
- copied, changed from r19751, /Net-Google-Code/trunk/lib/Net/Google/Code/Role.pm
Removed:
Net-Google-Code/trunk/lib/Net/Google/Code/Role.pm
Modified:
Net-Google-Code/trunk/MANIFEST
Net-Google-Code/trunk/lib/Net/Google/Code.pm
Net-Google-Code/trunk/lib/Net/Google/Code/Download.pm
Net-Google-Code/trunk/lib/Net/Google/Code/Issue.pm
Net-Google-Code/trunk/lib/Net/Google/Code/Wiki.pm
Log:
Role.pm => TypicalRoles.pm
Modified: Net-Google-Code/trunk/MANIFEST
==============================================================================
--- Net-Google-Code/trunk/MANIFEST (original)
+++ Net-Google-Code/trunk/MANIFEST Tue May 26 08:58:25 2009
@@ -19,7 +19,7 @@
lib/Net/Google/Code/Issue/Comment.pm
lib/Net/Google/Code/Issue/PropChange.pm
lib/Net/Google/Code/Issue/Search.pm
-lib/Net/Google/Code/Role.pm
+lib/Net/Google/Code/TypicalRoles.pm
lib/Net/Google/Code/Role/Authentication.pm
lib/Net/Google/Code/Role/DateTime.pm
lib/Net/Google/Code/Role/Fetchable.pm
Modified: Net-Google-Code/trunk/lib/Net/Google/Code.pm
==============================================================================
--- Net-Google-Code/trunk/lib/Net/Google/Code.pm (original)
+++ Net-Google-Code/trunk/lib/Net/Google/Code.pm Tue May 26 08:58:25 2009
@@ -1,7 +1,7 @@
package Net::Google::Code;
use Moose;
-with 'Net::Google::Code::Role';
+with 'Net::Google::Code::TypicalRoles';
use Scalar::Util qw/blessed/;
our $VERSION = '0.10';
Modified: Net-Google-Code/trunk/lib/Net/Google/Code/Download.pm
==============================================================================
--- Net-Google-Code/trunk/lib/Net/Google/Code/Download.pm (original)
+++ Net-Google-Code/trunk/lib/Net/Google/Code/Download.pm Tue May 26 08:58:25 2009
@@ -4,7 +4,7 @@
use Params::Validate qw(:all);
use Scalar::Util qw/blessed/;
-with 'Net::Google::Code::Role';
+with 'Net::Google::Code::TypicalRoles';
has 'project' => (
isa => 'Str',
Modified: Net-Google-Code/trunk/lib/Net/Google/Code/Issue.pm
==============================================================================
--- Net-Google-Code/trunk/lib/Net/Google/Code/Issue.pm (original)
+++ Net-Google-Code/trunk/lib/Net/Google/Code/Issue.pm Tue May 26 08:58:25 2009
@@ -1,7 +1,7 @@
package Net::Google::Code::Issue;
use Moose;
use Params::Validate qw(:all);
-with 'Net::Google::Code::Role';
+with 'Net::Google::Code::TypicalRoles';
use Net::Google::Code::Issue::Comment;
use Net::Google::Code::Issue::Attachment;
use Scalar::Util qw/blessed/;
Copied: Net-Google-Code/trunk/lib/Net/Google/Code/TypicalRoles.pm (from r19751, /Net-Google-Code/trunk/lib/Net/Google/Code/Role.pm)
==============================================================================
--- /Net-Google-Code/trunk/lib/Net/Google/Code/Role.pm (original)
+++ Net-Google-Code/trunk/lib/Net/Google/Code/TypicalRoles.pm Tue May 26 08:58:25 2009
@@ -1,4 +1,4 @@
-package Net::Google::Code::Role;
+package Net::Google::Code::TypicalRoles;
use Moose::Role;
with 'Net::Google::Code::Role::Fetchable';
@@ -16,11 +16,12 @@
=head1 NAME
-Net::Google::Code::Role - Role
+Net::Google::Code::TypicalRoles - TypicalRoles
=head1 DESCRIPTION
-this is an aggregation role that includes all the roles.
+this is an aggregation of roles that includes the typical roles
+for Code.pm, Code/Issue.pm, Code/Download.pm and Code/Wiki.pm
=head1 AUTHOR
Modified: Net-Google-Code/trunk/lib/Net/Google/Code/Wiki.pm
==============================================================================
--- Net-Google-Code/trunk/lib/Net/Google/Code/Wiki.pm (original)
+++ Net-Google-Code/trunk/lib/Net/Google/Code/Wiki.pm Tue May 26 08:58:25 2009
@@ -2,7 +2,7 @@
use Moose;
use Params::Validate qw(:all);
-with 'Net::Google::Code::Role';
+with 'Net::Google::Code::TypicalRoles';
has 'project' => (
isa => 'Str',
More information about the Bps-public-commit
mailing list