The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl

# ABSTRACT: Script to execute Perl::Tidy::Sweetened cleanup
# PODNAME: perltidier

use strict;
use warnings;
use Perl::Tidy::Sweetened;
Perl::Tidy::Sweetened::perltidy();

__END__

=pod

=head1 NAME

perltidier - Script to execute Perl::Tidy::Sweetened cleanup

=head1 DESCRIPTION

This script is a drop in replacement for L<Perl::Tidy>'s C<perltidy> which
uses L<Perl::Tidy::Sweetened> to cleanup Perl code with a more "modern" syntax
(ie, L<Method::Signatures::Simple>, L<MooseX::Method::Signatures>,
L<MooseX::Declare>, etc).

See the documentation for L<Perl::Tidy> and L<perltidy> for usage. See
L<Perl::Tidy::Sweetened> for more information about the changes introduced.

=head1 SEE ALSO

L<Perl::Tidy>

=head1 AUTHOR

Mark Grimes E<lt>mgrimes@cpan.orgE<gt>

=head1 CONTRIBUTORS

=over 4

=item *

Kent Fredric (@kentnl)

=item *

Gregoy Oschwald (@oschwal)

=item *

Curtis Brandt (@aggrolite)

=back

=head1 SOURCE

Source repository is at L<https://github.com/mvgrimes/Perl-Tidy-Sweetened>.

=head1 BUGS

Please report any bugs or feature requests on the bugtracker website L<http://github.com/mvgrimes/perl-tidy-sweetened/issues>

When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2016 by Mark Grimes E<lt>mgrimes@cpan.orgE<gt>.

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

=cut