--- /dev/null
+Revision history for Perl extension MooseX::MetaDescription
+
+0.01
+ - extracted from Ernst project into it's
+ own package, cause it is useful
\ No newline at end of file
--- /dev/null
+Changes
+MANIFEST
+README
+lib/MooseX/MetaDescription.pm
+lib/MooseX/MetaDescription/Description.pm
+lib/MooseX/MetaDescription/Meta/Attribute.pm
+lib/MooseX/MetaDescription/Meta/Class.pm
+lib/MooseX/MetaDescription/Meta/Trait.pm
+t/000_load.t
+t/001_basic.t
+t/002_custom_description.t
--- /dev/null
+^_build
+^Build$
+^Build.PL$
+^blib
+~$
+\.bak$
+CVS
+\.svn
+\.DS_Store
+cover_db
+\..*\.sw.?$
+^Makefile$
+^pm_to_blib$
+^MakeMaker-\d
+^blibdirs$
+\.old$
+^#.*#$
+^\.#
+^TODO$
+^PLAN$
+^benchmarks$
+^\._.*$
\ No newline at end of file
--- /dev/null
+use strict;
+use warnings;
+use inc::Module::Install;
+
+name 'MooseX::MetaDescription';
+all_from 'lib/MooseX/MetaDescription.pm';
+license 'perl';
+
+# prereqs
+requires 'Moose' => 0.40;
+
+# things the tests need
+build_requires 'Test::More' => '0.62';
+
+tests('t/*.t');
+
+WriteAll();
+
--- /dev/null
+MooseX::MetaDescription version 0.01
+===========================
+
+See the individual module documentation for more information
+
+INSTALLATION
+
+To install this module type the following:
+
+ perl Makefile.PL
+ make
+ make test
+ make install
+
+DEPENDENCIES
+
+This module requires these other modules and libraries:
+
+ Moose
+
+COPYRIGHT AND LICENCE
+
+Copyright (C) 2008 Infinity Interactive, Inc.
+
+http://www.iinteractive.com
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+