[Bps-public-commit] Path-Dispatcher branch, master, updated. 49b983340e3396e779e35904ae563420dd42a620
sartak at bestpractical.com
sartak at bestpractical.com
Tue Mar 16 09:34:14 EDT 2010
The branch, master has been updated
via 49b983340e3396e779e35904ae563420dd42a620 (commit)
via ce2846b8813d608a61199b89a398e61ad1883c57 (commit)
via 00c7e9ac48882fc4cd45d1b0ed3f3c80f12d994a (commit)
from 6d7b67c5d485fcdb62090b4b0333a90aa0e2ef2d (commit)
Summary of changes:
Changes | 16 ++++++++++++++++
Makefile.PL | 1 -
lib/Path/Dispatcher.pm | 2 +-
3 files changed, 17 insertions(+), 2 deletions(-)
- Log -----------------------------------------------------------------
commit 00c7e9ac48882fc4cd45d1b0ed3f3c80f12d994a
Author: Shawn M Moore <sartak at bestpractical.com>
Date: Tue Mar 16 09:26:15 2010 -0400
No longer require Sub::Exporter
diff --git a/Makefile.PL b/Makefile.PL
index 8657a8d..0d07d17 100755
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -5,7 +5,6 @@ all_from 'lib/Path/Dispatcher.pm';
repository 'http://github.com/bestpractical/path-dispatcher';
requires 'Any::Moose';
-requires 'Sub::Exporter';
build_requires 'Test::Exception';
commit ce2846b8813d608a61199b89a398e61ad1883c57
Author: Shawn M Moore <sartak at bestpractical.com>
Date: Tue Mar 16 09:26:47 2010 -0400
This doesn't actually warn til much later
diff --git a/lib/Path/Dispatcher.pm b/lib/Path/Dispatcher.pm
index 7072fce..ae29503 100644
--- a/lib/Path/Dispatcher.pm
+++ b/lib/Path/Dispatcher.pm
@@ -113,7 +113,7 @@ Path::Dispatcher - flexible and extensible dispatch
$dispatcher->add_rule(
Path::Dispatcher::Rule::Regex->new(
regex => qr{^/(foo)/},
- block => sub { warn $1; }, # foo
+ block => sub { warn $1; },
)
);
commit 49b983340e3396e779e35904ae563420dd42a620
Author: Shawn M Moore <sartak at bestpractical.com>
Date: Tue Mar 16 09:33:54 2010 -0400
0.15 changes thus far
diff --git a/Changes b/Changes
index ee32943..63caf40 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,22 @@
Revision history for Path-Dispatcher
0.15
+ ** Factored Path-Dispatcher-Declarative into its own distribution
+ ** Be sure to update your dependency information!
+
+ Implement ->complete for Rule::Dispatch
+
+ Add Path::Dispatcher::Rule::Alternation
+
+ Implement case insensitivity fory Rule::Eq
+
+ Add Path::Dispatcher::Rule::Sequence - like Rule::Tokens but
+ better!
+
+ Add Path::Dispatcher::Rule::Enum
+
+ Path autoboxing has been factored out into a private method for
+ more overridability
0.14 Thu Dec 31 13:18:19 2009
Add Path::Dispatcher->complete for tab-completion
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list