Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.1.1.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index b7e5683..d239688 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension App::LDAP

+0.1.1   Fri Jan 11 15:03:39 CST 2013
+        - use Namespace::Dispatch 0.05
+
 0.1.0   Fri Sep 21 18:00:48 2012
         - App::LDAP::Role as the base of Roles
         - refactor functions every commands used into App::LDAP::Role::Command
  • Loading branch information
shelling committed Jan 11, 2013
1 parent 29abb1b commit fbac0f4
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Changes
@@ -1,5 +1,8 @@
Revision history for Perl extension App::LDAP Revision history for Perl extension App::LDAP


0.1.1 Fri Jan 11 15:03:39 CST 2013
- use Namespace::Dispatch 0.05

0.1.0 Fri Sep 21 18:00:48 2012 0.1.0 Fri Sep 21 18:00:48 2012
- App::LDAP::Role as the base of Roles - App::LDAP::Role as the base of Roles
- refactor functions every commands used into App::LDAP::Role::Command - refactor functions every commands used into App::LDAP::Role::Command
Expand Down
2 changes: 1 addition & 1 deletion lib/App/LDAP.pm
@@ -1,6 +1,6 @@
package App::LDAP; package App::LDAP;


our $VERSION = '0.1.0'; our $VERSION = '0.1.1';


use Modern::Perl; use Modern::Perl;


Expand Down
12 changes: 12 additions & 0 deletions lib/App/LDAP/Config.pm
Expand Up @@ -47,3 +47,15 @@ sub config_from_line {
} }


1; 1;

=pod
=head1 NAME
App::LDAP::Config - loader of config files
=head1 DESCRIPTION
This module would be called automatically in App::LDAP::run() to load the configurations.
=cut
15 changes: 15 additions & 0 deletions lib/App/LDAP/Role.pm
Expand Up @@ -36,3 +36,18 @@ sub find_user {
no Moose::Role; no Moose::Role;


1; 1;

=pod
=head1 NAME
App::LDAP::Role - base of all roles in App::LDAP
=head1 DESCRIPTION
This role provides common helpers for almost all packages in App::LDAP, including ldap() for getting singleton of
App::LDAP::Connection, config() for getting singleton of App::LDAP::Config and secret() for getting singleton of
App::LDAP::Secret.
=cut

13 changes: 13 additions & 0 deletions lib/App/LDAP/Secret.pm
Expand Up @@ -43,3 +43,16 @@ sub read_secret {
} }


1; 1;

=pod
=head1 NAME
App::LDAP::Secret - loader of secret file
=head1 DESCRIPTION
this module would be called automatically in App::LDAP::run() to load the password for binding
=cut

0 comments on commit fbac0f4

Please sign in to comment.