[Bps-public-commit] r16906 - in Path-Dispatcher/trunk: lib/Path/Dispatcher

sartak at bestpractical.com sartak at bestpractical.com
Tue Nov 18 19:06:39 EST 2008


Author: sartak
Date: Tue Nov 18 19:06:39 2008
New Revision: 16906

Added:
   Path-Dispatcher/trunk/lib/Path/Dispatcher/Path.pm
Modified:
   Path-Dispatcher/trunk/   (props changed)

Log:
 r75737 at onn:  sartak | 2008-11-18 18:56:22 -0500
 PD::Path class


Added: Path-Dispatcher/trunk/lib/Path/Dispatcher/Path.pm
==============================================================================
--- (empty file)
+++ Path-Dispatcher/trunk/lib/Path/Dispatcher/Path.pm	Tue Nov 18 19:06:39 2008
@@ -0,0 +1,21 @@
+#!/usr/bin/env perl
+package Path::Dispatcher::Path;
+use Moose;
+
+has path => (
+    is        => 'rw',
+    isa       => 'Str',
+    predicate => 'has_path',
+);
+
+has metadata => (
+    is        => 'rw',
+    isa       => 'HashRef',
+    predicate => 'has_metadata',
+);
+
+__PACKAGE__->meta->make_immutable;
+no Moose;
+
+1;
+



More information about the Bps-public-commit mailing list