misc crap;
Stevan Little [Tue, 31 Jan 2006 18:07:39 +0000 (18:07 +0000)]
Changes
Makefile.PL [new file with mode: 0644]
README
lib/Class/MOP.pm

diff --git a/Changes b/Changes
index d7acd8e..1363cbb 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1 +1 @@
-Changes for Class::MOP
\ No newline at end of file
+Revision history for Perl extension Class-MOP.
\ No newline at end of file
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..402ba0a
--- /dev/null
@@ -0,0 +1,13 @@
+use ExtUtils::MakeMaker;
+WriteMakefile(
+    NAME         => 'Class::MOP',
+    VERSION_FROM => 'lib/Class/MOP.pm', 
+    PREREQ_PM    => {
+        'Test::More'      => 0,
+        'Test::Exception' => 0,
+        'Scalar::Util'    => 0,
+        'Carp'            => 0,
+        'B'               => 0,
+        'Sub::Name'       => 0,        
+    }
+);
diff --git a/README b/README
index e68d341..df45ba7 100644 (file)
--- a/README
+++ b/README
@@ -1 +1,29 @@
-READ ME for Class::MOP
\ No newline at end of file
+Class::MOP 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:
+
+       None
+
+COPYRIGHT AND LICENCE
+
+Copyright (C) 2006 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. 
+
index 0a650dc..b1d7785 100644 (file)
@@ -226,6 +226,12 @@ See L<Class::MOP::Method> for more details.
 
 =back
 
+head1 BUGS
+
+All complex software has bugs lurking in it, and this module is no 
+exception. If you find a bug please either email me, or add the bug
+to cpan-RT.
+
 =head1 SEE ALSO
 
 =head2 Books
@@ -244,7 +250,7 @@ See L<Class::MOP::Method> for more details.
 
 =over 4
 
-=item The Perl 6 MetaModel work
+=item The Perl 6 MetaModel work in the Pugs project
 
 =over 4