details
Stevan Little [Mon, 7 Apr 2008 13:31:25 +0000 (13:31 +0000)]
Changes [new file with mode: 0644]
MANIFEST [new file with mode: 0644]
MANIFEST.SKIP [new file with mode: 0644]
Makefile.PL [new file with mode: 0644]
README [new file with mode: 0644]

diff --git a/Changes b/Changes
new file mode 100644 (file)
index 0000000..dc598d8
--- /dev/null
+++ b/Changes
@@ -0,0 +1,5 @@
+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
diff --git a/MANIFEST b/MANIFEST
new file mode 100644 (file)
index 0000000..801e19a
--- /dev/null
+++ b/MANIFEST
@@ -0,0 +1,11 @@
+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
diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
new file mode 100644 (file)
index 0000000..a32f56a
--- /dev/null
@@ -0,0 +1,22 @@
+^_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
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..567dbfe
--- /dev/null
@@ -0,0 +1,18 @@
+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();
+
diff --git a/README b/README
new file mode 100644 (file)
index 0000000..8cc32f7
--- /dev/null
+++ b/README
@@ -0,0 +1,29 @@
+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. 
+