[Bps-public-commit] path-dispatcher-declarative branch, master, updated. 7e4ce301184d3f1a356f205eee7ce16c012b3a83

sartak at bestpractical.com sartak at bestpractical.com
Tue Mar 16 09:34:15 EDT 2010


The branch, master has been updated
       via  7e4ce301184d3f1a356f205eee7ce16c012b3a83 (commit)
       via  5cdb05b62e037acf320e3f3cd8c8927d7738eb84 (commit)
       via  e271da5211a7014db4cc76ef69f91bf1c23315cf (commit)
       via  7047117680aa732c23108a129a965ec31a6961a9 (commit)
      from  3daed04d5bd3c9c4774bb15c1e9fde20a765bb36 (commit)

Summary of changes:
 .gitignore                         |   10 ++++++++++
 Changes                            |    5 +++++
 Makefile.PL                        |   15 +++++++++++++++
 lib/Path/Dispatcher/Declarative.pm |   21 +++++++++++++++++++++
 4 files changed, 51 insertions(+), 0 deletions(-)
 create mode 100644 Changes
 create mode 100644 Makefile.PL

- Log -----------------------------------------------------------------
commit 7047117680aa732c23108a129a965ec31a6961a9
Author: Shawn M Moore <sartak at bestpractical.com>
Date:   Tue Mar 16 09:22:39 2010 -0400

    gitignore

diff --git a/.gitignore b/.gitignore
index e69de29..fa7c8d8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1,10 @@
+META.yml
+Makefile
+blib/
+inc/
+*.sw[po]
+pm_to_blib
+MANIFEST
+MANIFEST.bak
+SIGNATURE
+cover_db/

commit e271da5211a7014db4cc76ef69f91bf1c23315cf
Author: Shawn M Moore <sartak at bestpractical.com>
Date:   Tue Mar 16 09:23:45 2010 -0400

    Makefile.PL

diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..374a778
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,15 @@
+use inc::Module::Install;
+
+name       'Path-Dispatcher-Declarative';
+all_from   'lib/Path/Dispatcher/Declarative.pm';
+repository 'http://github.com/bestpractical/path-dispatcher-declarative';
+
+requires 'Path::Dispatcher' => '0.15';
+
+requires 'Any::Moose';
+requires 'Sub::Exporter';
+
+build_requires 'Test::Exception';
+
+WriteAll;
+

commit 5cdb05b62e037acf320e3f3cd8c8927d7738eb84
Author: Shawn M Moore <sartak at bestpractical.com>
Date:   Tue Mar 16 09:25:41 2010 -0400

    More distization

diff --git a/lib/Path/Dispatcher/Declarative.pm b/lib/Path/Dispatcher/Declarative.pm
index 7bcfe7c..c63c6f8 100644
--- a/lib/Path/Dispatcher/Declarative.pm
+++ b/lib/Path/Dispatcher/Declarative.pm
@@ -1,6 +1,10 @@
 package Path::Dispatcher::Declarative;
 use strict;
 use warnings;
+use 5.008001;
+
+our $VERSION = '0.01';
+
 use Path::Dispatcher;
 use Path::Dispatcher::Declarative::Builder;
 use Sub::Exporter;
@@ -193,5 +197,22 @@ An example:
             ...
         };
 
+=head1 AUTHOR
+
+Shawn M Moore, C<< <sartak at bestpractical.com> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to
+C<bug-path-dispatcher-declarative at rt.cpan.org>, or through the web interface at
+L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Path-Dispatcher-Declarative>.
+
+=head1 COPYRIGHT & LICENSE
+
+Copyright 2008-2010 Best Practical Solutions.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
 =cut
 

commit 7e4ce301184d3f1a356f205eee7ce16c012b3a83
Author: Shawn M Moore <sartak at bestpractical.com>
Date:   Tue Mar 16 09:30:04 2010 -0400

    Changes

diff --git a/Changes b/Changes
new file mode 100644
index 0000000..6252fbe
--- /dev/null
+++ b/Changes
@@ -0,0 +1,5 @@
+Revision history for Path-Dispatcher-Declarative
+
+0.01  2010-03-16
+        Factored out of Path-Dispatcher
+

-----------------------------------------------------------------------



More information about the Bps-public-commit mailing list