File Coverage

blib/lib/RDF/iCalendar.pm
Criterion Covered Total %
statement 7 9 77.7
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 12 83.3


line stmt bran cond sub pod time code
1             package RDF::iCalendar;
2              
3 1     1   21691 use 5.008;
  1         4  
  1         46  
4 1     1   5 use strict;
  1         2  
  1         35  
5 1     1   639 use RDF::iCalendar::Exporter;
  0            
  0            
6              
7             BEGIN {
8             $RDF::iCalendar::AUTHORITY = 'cpan:TOBYINK';
9             $RDF::iCalendar::VERSION = '0.004';
10             }
11              
12             1;
13              
14             __END__
15              
16             =head1 NAME
17              
18             RDF::iCalendar - convert from RDF to iCalendar
19              
20             =head1 DESCRIPTION
21              
22             This module doesn't do anything itself; it just loads RDF::iCalendar::Exporter
23             for you.
24              
25             =head2 RDF::iCalendar::Exporter
26              
27             L<RDF::iCalendar::Exporter> takes some RDF using the W3C's iCalendar vocabulary,
28             and outputs L<RDF::iCalendar::Entity> objects.
29              
30             =head2 RDF::iCalendar::Importer
31              
32             B<RDF::vCard::Importer> will do the reverse, but doesn't exist yet.
33              
34             =head2 RDF::iCalendar::Entity
35              
36             An L<RDF::iCalendar::Entity> objects is an individual iCalendar calendar. It overloads
37             stringification, so just treat it like a string.
38              
39             =head2 RDF::iCalendar::Line
40              
41             L<RDF::iCalendar::Line> is internal fu that you probably don't want to touch.
42              
43             =head1 BUGS
44              
45             Please report any bugs to
46             L<https://rt.cpan.org/Public/Dist/Display.html?Name=RDF-iCalendar>.
47              
48             =head1 SEE ALSO
49              
50             L<http://www.w3.org/TR/rdfcal/>.
51              
52             L<http://www.perlrdf.org/>.
53              
54             L<RDF::vCard>.
55              
56             =head1 AUTHOR
57              
58             Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
59              
60             =head1 COPYRIGHT
61              
62             Copyright 2011, 2013 Toby Inkster
63              
64             This is free software; you can redistribute it and/or modify it under
65             the same terms as the Perl 5 programming language system itself.
66              
67             =head1 DISCLAIMER OF WARRANTIES
68              
69             THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
70             WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
71             MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.