diff options
author | franck cuny <franck@lumberjaph.net> | 2010-08-02 12:18:05 +0200 |
---|---|---|
committer | franck cuny <franck@lumberjaph.net> | 2010-08-02 12:20:04 +0200 |
commit | d574e34236f1398ebe67a25668d4c8cbd7d1b785 (patch) | |
tree | 0eae65ef581fb128d4f9c158d18c0a82bcab0d0f | |
parent | add new panel: routes (display a list of routes availabe in your application) (diff) | |
download | dancer-debug-d574e34236f1398ebe67a25668d4c8cbd7d1b785.tar.gz |
update POD; update version and changes
-rw-r--r-- | Changes | 3 | ||||
-rw-r--r-- | dist.ini | 3 | ||||
-rw-r--r-- | lib/Dancer/Debug.pm | 2 | ||||
-rw-r--r-- | lib/Plack/Middleware/Debug/Dancer/Logger.pm | 10 | ||||
-rw-r--r-- | lib/Plack/Middleware/Debug/Dancer/Routes.pm | 10 | ||||
-rw-r--r-- | lib/Plack/Middleware/Debug/Dancer/Session.pm | 10 | ||||
-rw-r--r-- | lib/Plack/Middleware/Debug/Dancer/Settings.pm | 10 | ||||
-rw-r--r-- | lib/Plack/Middleware/Debug/Dancer/Version.pm | 10 |
8 files changed, 55 insertions, 3 deletions
diff --git a/Changes b/Changes index fe1bef3..74f1c1a 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,7 @@ Revision history for Perl extension Dancer::Debug +0.02 Mon 02 Aug 2010 12:14:27 PM CEST + - add new panel : Routes + 0.01 Sun Apr 18 11:28:06 2010 - original version diff --git a/dist.ini b/dist.ini index e4a87d0..a809ccc 100644 --- a/dist.ini +++ b/dist.ini @@ -3,9 +3,8 @@ author = franck cuny <franck@lumberjaph.net> license = Perl_5 copyright_holder = franck cuny copyright_year = 2010 -version = 0.01 +version = 0.02 -[@Git] [@Filter] bundle = @Basic diff --git a/lib/Dancer/Debug.pm b/lib/Dancer/Debug.pm index aa3a912..79684d8 100644 --- a/lib/Dancer/Debug.pm +++ b/lib/Dancer/Debug.pm @@ -4,7 +4,6 @@ package Dancer::Debug; use strict; use warnings; -our $VERSION = '0.01'; 1; @@ -20,6 +19,7 @@ You can activate the panels in your development configuration file: - Dancer::Version - Dancer::Settings - Dancer::Logger + - Dancer::Routes or in your app.psgi: diff --git a/lib/Plack/Middleware/Debug/Dancer/Logger.pm b/lib/Plack/Middleware/Debug/Dancer/Logger.pm index 03e5b03..487967c 100644 --- a/lib/Plack/Middleware/Debug/Dancer/Logger.pm +++ b/lib/Plack/Middleware/Debug/Dancer/Logger.pm @@ -52,3 +52,13 @@ sub run { } 1; + +=head1 SYNOPSIS + +To activate this panel: + + plack_middlewares: + Debug: + - panels + - + - Dancer::Logger diff --git a/lib/Plack/Middleware/Debug/Dancer/Routes.pm b/lib/Plack/Middleware/Debug/Dancer/Routes.pm index 8d24e57..d214370 100644 --- a/lib/Plack/Middleware/Debug/Dancer/Routes.pm +++ b/lib/Plack/Middleware/Debug/Dancer/Routes.pm @@ -36,3 +36,13 @@ sub run { } 1; + +=head1 SYNOPSIS + +To activate this panel: + + plack_middlewares: + Debug: + - panels + - + - Dancer::Routes diff --git a/lib/Plack/Middleware/Debug/Dancer/Session.pm b/lib/Plack/Middleware/Debug/Dancer/Session.pm index 920e527..1782c56 100644 --- a/lib/Plack/Middleware/Debug/Dancer/Session.pm +++ b/lib/Plack/Middleware/Debug/Dancer/Session.pm @@ -20,3 +20,13 @@ sub run { } 1; + +=head1 SYNOPSIS + +To activate this panel: + + plack_middlewares: + Debug: + - panels + - + - Dancer::Session diff --git a/lib/Plack/Middleware/Debug/Dancer/Settings.pm b/lib/Plack/Middleware/Debug/Dancer/Settings.pm index cc80b3d..07ed96c 100644 --- a/lib/Plack/Middleware/Debug/Dancer/Settings.pm +++ b/lib/Plack/Middleware/Debug/Dancer/Settings.pm @@ -22,3 +22,13 @@ sub run { } 1; + +=head1 SYNOPSIS + +To activate this panel: + + plack_middlewares: + Debug: + - panels + - + - Dancer::Settings diff --git a/lib/Plack/Middleware/Debug/Dancer/Version.pm b/lib/Plack/Middleware/Debug/Dancer/Version.pm index 3514887..23e6bbe 100644 --- a/lib/Plack/Middleware/Debug/Dancer/Version.pm +++ b/lib/Plack/Middleware/Debug/Dancer/Version.pm @@ -17,3 +17,13 @@ sub run { } 1; + +=head1 SYNOPSIS + +To activate this panel: + + plack_middlewares: + Debug: + - panels + - + - Dancer::Version |