File Coverage

blib/lib/App/remarkpl.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 App::remarkpl;
2              
3             =head1 NAME
4              
5             App::remarkpl - Web based presentation tool
6              
7             =head1 VERSION
8              
9             0.05
10              
11             =head1 DESCRIPTION
12              
13             L is is a L based webserver for showing
14             L powered presentations locally.
15              
16             Have a look at L for more information
17             about how to write slides.
18              
19             =head1 SYNOPSIS
20              
21             # Start a slideshow server
22             $ remarkpl slides.markdown
23              
24             # Start the server on a different listen address
25             $ remarkpl slides.markdown --listen http://*:5000
26              
27             # Show an example presentation
28             $ remarkpl example.markdown
29             $ remarkpl example.markdown --print
30              
31             After starting the server, you can open your favorite (modern) browser
32             at L.
33              
34             =cut
35              
36 1     1   6 use Mojo::Base -base;
  1         17  
  1         6  
37              
38             our $VERSION = '0.05';
39              
40             =head1 COPYRIGHT AND LICENSE
41              
42             Copyright (C) 2014, Jan Henning Thorsen
43              
44             This program is free software, you can redistribute it and/or modify it under
45             the terms of the Artistic License version 2.0.
46              
47             =head1 AUTHOR
48              
49             Jan Henning Thorsen - C
50              
51             =cut
52              
53             1;