App-WRT

 view release on metacpan or  search on metacpan

lib/App/WRT/EntryStore.pm  view on Meta::CPAN

}

=item all_renderable()

Returns a list of all existing source paths which are considered "renderable".

A path should match C<$RENDERABLE_EXPR> and not be an index file.

=cut

sub all_renderable() {
  my ($self) = shift;
  return grep {
    (index($_, '/index', -6) == -1)
    &&
    m/$RENDERABLE_EXPR/
  } @{ $self->{entries} };
}

=item dates_by_depth($depth)



( run in 0.524 second using v1.01-cache-2.11-cpan-65fba6d93b7 )