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

NAME

Twitter::API::Trait::Enchilada - Sometimes you wan the whole enchilada

VERSION

version 0.0100

SYNOPSIS

    use Twitter::API;

    my $client = Twitter::API->new_with_traits(
        traits => 'Enchilada',
        %other_new_options
    );

    # which is just shorthand for:
    my $client = Twitter::API->new_with_traits(
        traits => [ qw/
            ApiMethods
            NormalizeBooleans
            RetryOnError
            DecodeHtmlEntities
        /],
        %other_new_options
    );

DESCRIPTION

This is just a shortcut for applying traits ApiMethods, NormalizeBooleans, RetryOnError, and DecodeHtmlEntities. Because sometimes you just want the whole enchilada.

AUTHOR

Marc Mims <marc@questright.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2015-2016 by Marc Mims.

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