The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Task::Unicode;

use 5.006;
use strict;
use warnings;

our $VERSION = '0.04';

1;

__END__

=encoding utf8

=head1 NAME

Task::Unicode - Everything needed to work with Unicode data

=head1 VERSION

This document describes Task::Unicode version 0.04.

=head1 DESCRIPTION

This L<Task> module installs everything needed for working with Unicode and
UTF-8 strings as well as a number of modules and utilities to assist in
development and debugging.  It is not intended to be an all-inclusive bundle
of Unicode modules on the CPAN.  Instead, it is a collection of the essential
and some of the most useful general-purpose modules.

This is an early release of Task::Unicode and the bundled module list is not
yet complete.  Modules may be added or removed.  Please contact the author
with suggestions for upcoming releases.

The brief module descriptions are currently taken directly from each module.
In the future, these will be slightly expanded and explained for those with
less Unicode knowledge.

=head2 MODULES

=over

=item L<Unicode::CaseFold>

Unicode case-folding for case-insensitive lookups

=item L<Unicode::Collate::Locale>

Linguistic tailoring for DUCET via Unicode::Collate

=item L<Unicode::GCString>

String as Sequence of UAX #29 Grapheme Clusters

=item L<Unicode::LineBreak>

Line Folding for Plain Text

=item L<Unicode::Regex::Set>

Subtraction and Intersection of Character Sets in Unicode Regular Expressions

=item L<Unicode::Stringprep>

Preparation of Internationalized Strings (RFC 3454)

=item L<utf8::all>

Turn on Unicode—all of it

=back

=head2 DEBUGGING

=over

=item L<String::Dump>

Dump strings of characters or bytes for printing and debugging

=item L<Encode::DoubleEncodedUTF8>

Fix double-encoded UTF-8 bytes to the correct one

=back

=head2 UTILITIES

=over

=item L<App::Uni>

Command-line utility to grep UnicodeData.txt

=item L<Unicode::Tussle>

Tom’s Unicode Scripts So Life is Easier (only installed with Perl 5.14+)

=back

=head2 SEE ALSO

This task requires Perl 5.8.0, which bundles the following important modules.

=over

=item L<charnames>

Access to Unicode character names and named character sequences; also define
character names

=item L<utf8>

Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source code

=item L<open>

Perl pragma to set default PerlIO layers for input and output

=item L<Encode>

Character encodings in Perl

=item L<Unicode::Collate>

Unicode Collation Algorithm

=item L<Unicode::Normalize>

Unicode Normalization Forms

=item L<Unicode::UCD>

Unicode character database

=back

=head1 AUTHOR

Nick Patch <patch@cpan.org>

=head1 COPYRIGHT AND LICENSE

© 2012 Nick Patch

This library is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

=cut