#!/usr/bin/perl

# workaround for dzil
package get_rss_from_forum;

our $VERSION = '0.01'; # VERSION

use 5.010;
use strict;
use warnings;

use Sub::Spec::CmdLine qw(run);
run(module => 'RSS::From::Forum::vBulletin', sub=>'get_rss_from_forum');

1;
# ABSTRACT: Get RSS from vBulletin forum


=pod

=head1 NAME

get_rss_from_forum - Get RSS from vBulletin forum

=head1 VERSION

version 0.01

=head1 SYNOPSIS

 $ get_rss_from_vbulletin_forum http://example.com/forum/forumdisplay.php?f=9
 <?xml version="1.0" encoding="UTF-8"?>
 <!-- generator="RSS::From::Forum::vBulletin 0.01 (Perl module)" -->
 <rss version="2.0">
   <channel>
     <title>...</title>
     <link>http://example.com/forum/forumdisplay.php?f=9#rss</link>
     <generator>...</generator>

     <item>
       <title>...</title>
       <link>http://example.com/forum/showthread.php?t=14445</link>
       <pubDate>...</pubDate>
       <description>...</description>
     </item>
     ...

   </channel>
 </rss>

=head1 DESCRIPTION

See L<RSS::From::Forum::vBulletin> for more details, including available
options.

=head1 SEE ALSO

=head1 AUTHOR

Steven Haryanto <stevenharyanto@gmail.com>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Steven Haryanto.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut


__END__

