[Bps-public-commit] jifty-plugin-authentication-oauth branch, master, updated. 6e2fde634121ffb5c0efee9396a3567e60162ef7

Shawn Moore sartak at bestpractical.com
Fri Jun 4 05:52:56 EDT 2010


The branch, master has been updated
       via  6e2fde634121ffb5c0efee9396a3567e60162ef7 (commit)
      from  24dea6d99d7dbccbcedc75e18bb9992b9921cc06 (commit)

Summary of changes:
 lib/Jifty/Plugin/Authentication/OAuth.pm |   50 ++++++++++++++++++++++++++++++
 1 files changed, 50 insertions(+), 0 deletions(-)
 create mode 100644 lib/Jifty/Plugin/Authentication/OAuth.pm

- Log -----------------------------------------------------------------
commit 6e2fde634121ffb5c0efee9396a3567e60162ef7
Author: Shawn M Moore <sartak at gmail.com>
Date:   Fri Jun 4 05:53:42 2010 -0400

    Stub .pm file

diff --git a/lib/Jifty/Plugin/Authentication/OAuth.pm b/lib/Jifty/Plugin/Authentication/OAuth.pm
new file mode 100644
index 0000000..d59cd45
--- /dev/null
+++ b/lib/Jifty/Plugin/Authentication/OAuth.pm
@@ -0,0 +1,50 @@
+use strict;
+use warnings;
+
+package Jifty::Plugin::Authentication::OAuth;
+use base qw/Jifty::Plugin/;
+
+our $VERSION = '0.01';
+
+=head1 NAME
+
+Jifty::Plugin::Authentication::OAuth - OAuth authentication plugin for Jifty
+
+=head2 DESCRIPTION
+
+Provides standalone OAuth authentication for your Jifty application.
+
+=head1 SYNOPSIS
+
+Add the following to your F<etc/config.yml> under the C<framework> section:
+
+    Plugins:
+        - Authentication::OAuth: {}
+
+=cut
+
+our %CONFIG = ( );
+
+=head2 init
+
+=cut
+
+sub init {
+    my $self = shift;
+    %CONFIG  = @_;
+}
+
+=head1 AUTHOR
+
+Shawn M Moore
+
+=head1 LICENSE
+
+Copyright 2010 Best Practical Solutions, LLC.
+
+This program is free software and may be modified and distributed under the same terms as Perl itself.
+
+=cut
+
+1;
+

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



More information about the Bps-public-commit mailing list