mooooooose
Stevan Little [Wed, 15 Mar 2006 19:01:40 +0000 (19:01 +0000)]
README
lib/Moose.pm
t/001_basic.t

diff --git a/README b/README
index d05173f..ababf8a 100644 (file)
--- a/README
+++ b/README
@@ -16,7 +16,10 @@ DEPENDENCIES
 
 This module requires these other modules and libraries:
 
-       None
+       Class::MOP
+       Scalar::Util
+       Carp
+       Sub::Name
 
 COPYRIGHT AND LICENCE
 
index 8172197..735c2d8 100644 (file)
@@ -16,8 +16,7 @@ use Moose::Meta::Class;
 use Moose::Meta::Attribute;
 
 use Moose::Object;
-
-require Moose::Util::TypeConstraints;
+use Moose::Util::TypeConstraints ':no_export';
 
 sub import {
        shift;
@@ -110,12 +109,8 @@ Moose -
 
 Makes Other Object Systems Envious
 
-Most Other Objects Suck Eggs
-
 Makes Object Orientation So Easy
 
-Metacircular Object Oriented Systems Environment
-
 =head1 BUGS
 
 All complex software has bugs lurking in it, and this module is no 
index ba0fbb5..e2b893b 100644 (file)
@@ -17,7 +17,6 @@ BEGIN {
        use Moose;
                
        has 'x' => (isa => Int(), is => 'ro');
-
        has 'y' => (isa => Int(), is => 'rw');
        
        sub clear {