1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
package Twitter::API::Trait::Enchilada;
# ABSTRACT: Sometimes you want the whole enchilada
$Twitter::API::Trait::Enchilada::VERSION = '1.0006';
use Moo::Role;
use namespace::clean;
# because you usually want the whole enchilada
my $namespace = __PACKAGE__ =~ s/\w+$//r;
with map join('', $namespace, $_), qw/
ApiMethods
NormalizeBooleans
RetryOnError
DecodeHtmlEntities
/;
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Twitter::API::Trait::Enchilada - Sometimes you want the whole enchilada
=head1 VERSION
version 1.0006
=head1 SYNOPSIS
use Twitter::API;
my $client = Twitter::API->new_with_traits(
traits => 'Enchilada',
%other_new_options
);
=head1 DESCRIPTION
This is just a shortcut for applying commonly used traits. Because, sometimes, you just want the whole enchilada.
This role simply bundles the following traits. See those modules for details.
=over 4
=item *
L<ApiMethods|Twitter::API::Trait::ApiMethods>
=item *
L<NormalizeBooleans|Twitter::API::Trait::NormalizeBooleans>
=item *
L<RetryOnError|Twitter::API::Trait::RetryOnError>
=item *
L<DecodeHtmlEntites|Twitter::API::Trait::DecodeHtmlEntities>
=back
=head1 AUTHOR
Marc Mims <marc@questright.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2015-2021 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.
=cut
|