[Bps-public-commit] r16840 - in GnuPG-Interface: .
jesse at bestpractical.com
jesse at bestpractical.com
Sat Nov 15 12:39:00 EST 2008
Author: jesse
Date: Sat Nov 15 12:38:59 2008
New Revision: 16840
Added:
GnuPG-Interface/lib/GnuPG/HashInit.pm
Modified:
GnuPG-Interface/ChangeLog
GnuPG-Interface/lib/GnuPG/Interface.pm
Log:
* 0.40_01, missing file
Modified: GnuPG-Interface/ChangeLog
==============================================================================
--- GnuPG-Interface/ChangeLog (original)
+++ GnuPG-Interface/ChangeLog Sat Nov 15 12:38:59 2008
@@ -1,3 +1,7 @@
+0.40_1 Sat Nov 15 12:35:59 EST 2008
+ * [rt.cpan.org #40963] Replace Class::MethodMaker with Moose (Chris Prather)
+
+
0.36 Mon Aug 13 12:16:38 EDT 2007
* [rt.cpan.org #28814] - Performance improvement from mehradek (Radoslaw Zielinski)
Added: GnuPG-Interface/lib/GnuPG/HashInit.pm
==============================================================================
--- (empty file)
+++ GnuPG-Interface/lib/GnuPG/HashInit.pm Sat Nov 15 12:38:59 2008
@@ -0,0 +1,13 @@
+package GnuPG::HashInit;
+use Moose::Role;
+
+sub hash_init {
+ my ($self, %args) = @_;
+ while ( my ( $method, $value ) = each %args ) {
+ $self->$method($value);
+ }
+}
+
+no Moose::Role;
+1;
+__END__
Modified: GnuPG-Interface/lib/GnuPG/Interface.pm
==============================================================================
--- GnuPG-Interface/lib/GnuPG/Interface.pm (original)
+++ GnuPG-Interface/lib/GnuPG/Interface.pm Sat Nov 15 12:38:59 2008
@@ -27,7 +27,7 @@
use GnuPG::Options;
use GnuPG::Handles;
-$VERSION = '0.36';
+$VERSION = '0.40_01';
has $_ => (
isa => 'Any',
More information about the Bps-public-commit
mailing list