[Bps-public-commit] jifty-plugin-recordhistory branch, master, created. d8d9443a8fe9255dd266216dc46e37716c960f48

Shawn Moore sartak at bestpractical.com
Wed Feb 2 19:31:03 EST 2011


The branch, master has been created
        at  d8d9443a8fe9255dd266216dc46e37716c960f48 (commit)

- Log -----------------------------------------------------------------
commit d8d9443a8fe9255dd266216dc46e37716c960f48
Author: Shawn M Moore <sartak at bestpractical.com>
Date:   Wed Feb 2 19:25:03 2011 -0500

    Layout

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..778bd9a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,14 @@
+MANIFEST
+MANIFEST.bak
+META.yml
+Makefile
+Makefile.old
+SIGNATURE
+blib/
+pm_to_blib
+t/*/mason*/
+var/
+mason*/
+*.swp
+t/t/mailbox_*
+t/testapp_plugin_*
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..63996fd
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,14 @@
+use inc::Module::Install;
+
+name           'Jifty-Plugin-RecordHistory';
+all_from       'lib/Jifty/Plugin/RecordHistory.pm';
+
+requires('Jifty' => '1.01209');
+
+build_requires 'Test::More';
+
+tests('t/t/*.t');
+
+auto_install;
+WriteAll;
+
diff --git a/lib/Jifty/Plugin/RecordHistory.pm b/lib/Jifty/Plugin/RecordHistory.pm
new file mode 100644
index 0000000..26cd262
--- /dev/null
+++ b/lib/Jifty/Plugin/RecordHistory.pm
@@ -0,0 +1,33 @@
+package Jifty::Plugin::RecordHistory;
+use strict;
+use warnings;
+use base qw/Jifty::Plugin/;
+
+our $VERSION = '0.01';
+
+1;
+
+__END__
+
+=head1 NAME
+
+Jifty::Plugin::RecordHistory - track all changes made to a record class
+
+=head1 DESCRIPTION
+
+
+=head1 SEE ALSO
+
+L<Jifty::Plugin::ActorMetadata>
+
+=head1 AUTHOR
+
+Shawn M Moore C<< <sartak at bestpractical.com> >>
+
+=head1 LICENSE
+
+Jifty::Plugin::RecordHistory is Copyright 2011 Best Practical Solutions, LLC.
+Jifty::Plugin::RecordHistory is distributed under the same terms as Perl itself.
+
+=cut
+

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



More information about the Bps-public-commit mailing list