File Coverage

blib/lib/Term/Screen/Lite/Win32.pm
Criterion Covered Total %
statement 11 12 91.6
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 1 0.0
total 15 18 83.3


line stmt bran cond sub pod time code
1             package Term::Screen::Lite::Win32;
2              
3             $Term::Screen::Lite::Win32::VERSION = '0.04';
4              
5             =head1 NAME
6              
7             Term::Screen::Lite::Win32 - Windows platform interface to terminal screen.
8              
9             =head1 VERSION
10              
11             Version 0.04
12              
13             =cut
14              
15 1     1   1270 use 5.006;
  1         3  
16 1     1   4 use Data::Dumper;
  1         2  
  1         37  
17              
18 1     1   5 use Moo;
  1         2  
  1         9  
19 1     1   296 use namespace::clean;
  1         2  
  1         6  
20              
21             =head1 DESCRIPTION
22              
23             B
24              
25             =cut
26              
27             sub clear {
28 0     0 0   print " \e[1J";
29             }
30              
31             =head1 AUTHOR
32              
33             Mohammad S Anwar, C<< >>
34              
35             =head1 REPOSITORY
36              
37             L
38              
39             =head1 SEE ALSO
40              
41             L
42              
43             =head1 BUGS
44              
45             Please report any bugs or feature requests to C,
46             or through the web interface at L.
47             I will be notified and then you'll automatically be notified of progress on your
48             bug as I make changes.
49              
50             =head1 SUPPORT
51              
52             You can find documentation for this module with the perldoc command.
53              
54             perldoc Term::Screen::Lite::Win32
55              
56             You can also look for information at:
57              
58             =over 4
59              
60             =item * RT: CPAN's request tracker (report bugs here)
61              
62             L
63              
64             =item * AnnoCPAN: Annotated CPAN documentation
65              
66             L
67              
68             =item * CPAN Ratings
69              
70             L
71              
72             =item * Search CPAN
73              
74             L
75              
76             =back
77              
78             =head1 LICENSE AND COPYRIGHT
79              
80             Copyright (C) 2015 - 2017 Mohammad S Anwar.
81              
82             This program is free software; you can redistribute it and / or modify it under
83             the terms of the the Artistic License (2.0). You may obtain a copy of the full
84             license at:
85              
86             L
87              
88             Any use, modification, and distribution of the Standard or Modified Versions is
89             governed by this Artistic License.By using, modifying or distributing the Package,
90             you accept this license. Do not use, modify, or distribute the Package, if you do
91             not accept this license.
92              
93             If your Modified Version has been derived from a Modified Version made by someone
94             other than you,you are nevertheless required to ensure that your Modified Version
95             complies with the requirements of this license.
96              
97             This license does not grant you the right to use any trademark, service mark,
98             tradename, or logo of the Copyright Holder.
99              
100             This license includes the non-exclusive, worldwide, free-of-charge patent license
101             to make, have made, use, offer to sell, sell, import and otherwise transfer the
102             Package with respect to any patent claims licensable by the Copyright Holder that
103             are necessarily infringed by the Package. If you institute patent litigation
104             (including a cross-claim or counterclaim) against any party alleging that the
105             Package constitutes direct or contributory patent infringement,then this Artistic
106             License to you shall terminate on the date that such litigation is filed.
107              
108             Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND
109             CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED
110             WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
111             NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS
112             REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT,
113             INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE
114             OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
115              
116             =cut
117              
118             1; # End of Term::Screen::Lite::Win32