[Jifty-commit] r5833 - in jifty/trunk: plugins/Comment plugins/Comment/t

Jifty commits jifty-commit at lists.jifty.org
Sun Sep 14 05:12:48 EDT 2008


Author: yves
Date: Sun Sep 14 05:12:48 2008
New Revision: 5833

Added:
   jifty/trunk/plugins/Comment/Makefile.PL
   jifty/trunk/plugins/Comment/t/00-load.t
Modified:
   jifty/trunk/Makefile.PL

Log:
* add a minimal Makefile.PL fo plugin Comment
* clean main jifty Makefile.PL
* add a load test
next: po and test the whole stuff


Modified: jifty/trunk/Makefile.PL
==============================================================================
--- jifty/trunk/Makefile.PL	(original)
+++ jifty/trunk/Makefile.PL	Sun Sep 14 05:12:48 2008
@@ -179,14 +179,6 @@
         recommends('Template::Declare' => '0.28'),
         recommends('Data::Dump::Streamer'),
     ],
-    'Comment Plugin' => [
-        -default => 0,
-        recommends('HTML::Scrubber'),
-        recommends('MIME::Base64::URLSafe'),
-        recommends('Net::Akismet'),
-        recommends('Regexp::Common'),
-        recommends('Regexp::Common::Email::Address'),
-    ],
 );
 
 

Added: jifty/trunk/plugins/Comment/Makefile.PL
==============================================================================
--- (empty file)
+++ jifty/trunk/plugins/Comment/Makefile.PL	Sun Sep 14 05:12:48 2008
@@ -0,0 +1,13 @@
+use inc::Module::Install 0.46;
+name('Comment');
+version_from('../../lib/Jifty.pm');
+
+requires('HTML::Scrubber'),
+requires('MIME::Base64::URLSafe'),
+requires('Net::Akismet'),
+requires('Regexp::Common'),
+requires('Regexp::Common::Email::Address'),
+
+&auto_install();
+
+WriteAll;

Added: jifty/trunk/plugins/Comment/t/00-load.t
==============================================================================
--- (empty file)
+++ jifty/trunk/plugins/Comment/t/00-load.t	Sun Sep 14 05:12:48 2008
@@ -0,0 +1,7 @@
+#!/usr/bin/env perl
+
+use warnings;
+use strict;
+
+use Test::More tests => 1;
+use_ok('Jifty::Plugin::Comment');


More information about the Jifty-commit mailing list