File Coverage

blib/lib/App/Sky/Results.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package App::Sky::Results;
2             $App::Sky::Results::VERSION = '0.4.2';
3 2     2   14 use strict;
  2         4  
  2         59  
4 2     2   9 use warnings;
  2         3  
  2         46  
5              
6              
7 2     2   9 use Carp ();
  2         4  
  2         25  
8              
9 2     2   8 use URI;
  2         4  
  2         43  
10              
11 2     2   8 use Moo;
  2         3  
  2         12  
12 2     2   758 use MooX 'late';
  2         4  
  2         14  
13              
14             has upload_cmd => ( isa => 'ArrayRef[Str]', is => 'ro', );
15             has urls => ( isa => 'ArrayRef[URI]', is => 'ro', );
16              
17              
18             1;
19              
20             __END__
21              
22             =pod
23              
24             =encoding UTF-8
25              
26             =head1 NAME
27              
28             App::Sky::Results - results of an upload.
29              
30             =head1 VERSION
31              
32             version 0.4.2
33              
34             =head1 METHODS
35              
36             =head2 $results->upload_cmd()
37              
38             The upload command to execute.
39              
40             =head2 $results->urls()
41              
42             An array reference of L<URI> objects where the files were uploaded to.
43              
44             =for :stopwords cpan testmatrix url bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan
45              
46             =head1 SUPPORT
47              
48             =head2 Websites
49              
50             The following websites have more information about this module, and may be of help to you. As always,
51             in addition to those websites please use your favorite search engine to discover more resources.
52              
53             =over 4
54              
55             =item *
56              
57             MetaCPAN
58              
59             A modern, open-source CPAN search engine, useful to view POD in HTML format.
60              
61             L<https://metacpan.org/release/App-Sky>
62              
63             =item *
64              
65             RT: CPAN's Bug Tracker
66              
67             The RT ( Request Tracker ) website is the default bug/issue tracking system for CPAN.
68              
69             L<https://rt.cpan.org/Public/Dist/Display.html?Name=App-Sky>
70              
71             =item *
72              
73             CPANTS
74              
75             The CPANTS is a website that analyzes the Kwalitee ( code metrics ) of a distribution.
76              
77             L<http://cpants.cpanauthors.org/dist/App-Sky>
78              
79             =item *
80              
81             CPAN Testers
82              
83             The CPAN Testers is a network of smoke testers who run automated tests on uploaded CPAN distributions.
84              
85             L<http://www.cpantesters.org/distro/A/App-Sky>
86              
87             =item *
88              
89             CPAN Testers Matrix
90              
91             The CPAN Testers Matrix is a website that provides a visual overview of the test results for a distribution on various Perls/platforms.
92              
93             L<http://matrix.cpantesters.org/?dist=App-Sky>
94              
95             =item *
96              
97             CPAN Testers Dependencies
98              
99             The CPAN Testers Dependencies is a website that shows a chart of the test results of all dependencies for a distribution.
100              
101             L<http://deps.cpantesters.org/?module=App::Sky>
102              
103             =back
104              
105             =head2 Bugs / Feature Requests
106              
107             Please report any bugs or feature requests by email to C<bug-app-sky at rt.cpan.org>, or through
108             the web interface at L<https://rt.cpan.org/Public/Bug/Report.html?Queue=App-Sky>. You will be automatically notified of any
109             progress on the request by the system.
110              
111             =head2 Source Code
112              
113             The code is open to the world, and available for you to hack on. Please feel free to browse it and play
114             with it, or whatever. If you want to contribute patches, please send me a diff or prod me to pull
115             from your repository :)
116              
117             L<https://github.com/shlomif/Sky-uploader>
118              
119             git clone git://github.com/shlomif/Sky-uploader.git
120              
121             =head1 AUTHOR
122              
123             Shlomi Fish <shlomif@cpan.org>
124              
125             =head1 BUGS
126              
127             Please report any bugs or feature requests on the bugtracker website
128             L<https://github.com/shlomif/Sky-uploader/issues>
129              
130             When submitting a bug or request, please include a test-file or a
131             patch to an existing test-file that illustrates the bug or desired
132             feature.
133              
134             =head1 COPYRIGHT AND LICENSE
135              
136             This software is Copyright (c) 2013 by Shlomi Fish.
137              
138             This is free software, licensed under:
139              
140             The MIT (X11) License
141              
142             =cut