File Coverage

blib/lib/Net/Amazon/S3/Vendor/Generic.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Net::Amazon::S3::Vendor::Generic;
2             $Net::Amazon::S3::Vendor::Generic::VERSION = '0.99';
3 1     1   713 use Moose 0.85;
  1         31  
  1         9  
4              
5             # ABSTRACT: Generic S3 vendor
6              
7             extends 'Net::Amazon::S3::Vendor';
8              
9             1;
10              
11             __END__
12              
13             =pod
14              
15             =encoding UTF-8
16              
17             =head1 NAME
18              
19             Net::Amazon::S3::Vendor::Generic - Generic S3 vendor
20              
21             =head1 VERSION
22              
23             version 0.99
24              
25             =head1 SYNOPSIS
26              
27             my $s3 = Net::Amazon::S3->new (
28             vendor => Net::Amazon::S3::Vendor::Generic->new (
29             host => ...,
30             use_https => ...',
31             use_virtual_host => ...,
32             authorization_method => ...,
33             default_region => ...,
34             ),
35             ...
36             );
37              
38             =head1 DESCRIPTION
39              
40             =head1 AUTHOR
41              
42             Branislav ZahradnĂ­k <barney@cpan.org>
43              
44             =head1 COPYRIGHT AND LICENSE
45              
46             This software is copyright (c) 2021 by Amazon Digital Services, Leon Brocard, Brad Fitzpatrick, Pedro Figueiredo, Rusty Conover, Branislav ZahradnĂ­k.
47              
48             This is free software; you can redistribute it and/or modify it under
49             the same terms as the Perl 5 programming language system itself.
50              
51             =cut