housekeeping, a bit of POD addition
Tara L Andrews [Tue, 17 Apr 2012 08:22:38 +0000 (10:22 +0200)]
Makefile.PL
lib/Text/Tradition/Collation/Reading.pm
lib/Text/Tradition/Stemma.pm
lib/Text/Tradition/Witness.pm
t/03podcoverage.t

index 944bc0a..fd5dd44 100644 (file)
@@ -24,7 +24,7 @@ requires( 'Moose' );
 requires( 'Moose::Util::TypeConstraints' );
 requires( 'StackTrace::Auto' );
 requires( 'Text::CSV' );
-requires( 'Text::TEI::Markup' );
+requires( 'Text::TEI::Markup' => '1.4' );
 requires( 'Throwable::X' );
 requires( 'TryCatch' );
 requires( 'XML::Easy::Syntax' );
index d2d1fb7..6c15c4b 100644 (file)
@@ -280,6 +280,18 @@ A few methods to try to tack on morphological information.
 
 Returns true if there is only one tag per lexeme in this reading.
 
+=head2 use_lexemes
+
+TBD
+
+=head2 add_morphological_tag
+
+TBD
+
+=head2 disambiguate
+
+TBD
+
 =cut
 
 sub use_lexemes {
index ec17145..c711430 100644 (file)
@@ -368,6 +368,12 @@ sub witnesses {
     return @wits;
 }
 
+=head2 hypotheticals
+
+Returns a list of the hypothetical witnesses represented in the stemma.
+
+=cut
+
 sub hypotheticals {
     my $self = shift;
     my @wits = grep 
index e9321f4..3113e54 100644 (file)
@@ -119,6 +119,11 @@ Accessor method for the witness identifier.
 
 Accessor method for the general witness description.
 
+=head2 has_source
+
+Boolean method that returns a true value if the witness was created with a
+data source (that is, a file, string, or object to be parsed).
+
 =head2 is_layered
 
 Boolean method to note whether the witness has layers (e.g. pre-correction 
@@ -782,6 +787,8 @@ __PACKAGE__->meta->make_immutable;
 
 =over
 
+=item * Figure out how to serialize a witness
+
 =item * Support encodings other than UTF-8
 
 =back
index 4728bbf..2d85544 100644 (file)
@@ -23,7 +23,7 @@ if( -e 'MANIFEST.SKIP' ) {
 }
                
 foreach my $mod ( keys %mods ) {
-       pod_coverage_ok( $mod, { also_private => [ qw/ BUILD throw / ] } );
+       pod_coverage_ok( $mod, { also_private => [ qw/ TO_JSON BUILD throw / ] } );
 }
 
-done_testing();
\ No newline at end of file
+done_testing();