Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
typester committed Nov 19, 2008
0 parents commit 5c3465b
Show file tree
Hide file tree
Showing 11 changed files with 515 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .shipit
@@ -0,0 +1,4 @@
steps = FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit, Tag, MakeDist, UploadCPAN

git.tagpattern = %v
git.push_to = origin
4 changes: 4 additions & 0 deletions Changes
@@ -0,0 +1,4 @@
Revision history for Perl extension Sniffer::RTMP

0.01 Wed Nov 19 12:47:24 2008
- original version
381 changes: 381 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions MANIFEST
@@ -0,0 +1,26 @@
Changes
inc/Module/Install.pm
inc/Module/Install/Base.pm
inc/Module/Install/Can.pm
inc/Module/Install/Fetch.pm
inc/Module/Install/Include.pm
inc/Module/Install/Makefile.pm
inc/Module/Install/Metadata.pm
inc/Module/Install/TestBase.pm
inc/Module/Install/Win32.pm
inc/Module/Install/WriteAll.pm
inc/Spiffy.pm
inc/Test/Base.pm
inc/Test/Base/Filter.pm
inc/Test/Builder.pm
inc/Test/Builder/Module.pm
inc/Test/More.pm
lib/Sniffer/RTMP.pm
LICENSE
Makefile.PL
MANIFEST This list of files
META.yml
README
t/00_compile.t
t/pod.t
t/pod_coverage.t
14 changes: 14 additions & 0 deletions MANIFEST.SKIP
@@ -0,0 +1,14 @@
\bRCS\b
\bCVS\b
^MANIFEST\.
^Makefile$
~$
\.old$
^blib/
^pm_to_blib
^MakeMaker-\d
\.gz$
\.cvsignore
^9\d_.*\.t
^\.git/
^\.shipit$
8 changes: 8 additions & 0 deletions Makefile.PL
@@ -0,0 +1,8 @@
use inc::Module::Install;
name 'Sniffer-RTMP';
all_from 'lib/Sniffer/RTMP.pm';

test_requires 'Test::More';
use_test_base;
auto_include;
WriteAll;
27 changes: 27 additions & 0 deletions README
@@ -0,0 +1,27 @@
This is Perl module Sniffer::RTMP.

INSTALLATION

Sniffer::RTMP installation is straightforward. If your CPAN shell is set up,
you should just be able to do

% cpan Sniffer::RTMP

Download it, unpack it, then build it as per the usual:

% perl Makefile.PL
% make && make test

Then install it:

% make install

DOCUMENTATION

Sniffer::RTMP documentation is available as in POD. So you can do:

% perldoc Sniffer::RTMP

to read the documentation online with your favorite pager.

Daisuke Murase
38 changes: 38 additions & 0 deletions lib/Sniffer/RTMP.pm
@@ -0,0 +1,38 @@
package Sniffer::RTMP;
use strict;
use warnings;

our $VERSION = '0.01';

=head1 NAME
Sniffer::RTMP - Module abstract (<= 44 characters) goes here
=head1 SYNOPSIS
use Sniffer::RTMP;
blah blah blah
=head1 DESCRIPTION
Stub documentation for this module was created by ExtUtils::ModuleMaker.
It looks like the author of the extension was negligent enough
to leave the stub unedited.
Blah blah blah.
=head1 AUTHOR
Daisuke Murase <typester@cpan.org>
=head1 COPYRIGHT
This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the
LICENSE file included with this module.
=cut

1;
4 changes: 4 additions & 0 deletions t/00_compile.t
@@ -0,0 +1,4 @@
use strict;
use Test::More tests => 1;

BEGIN { use_ok 'Sniffer::RTMP' }
4 changes: 4 additions & 0 deletions t/pod.t
@@ -0,0 +1,4 @@
use Test::More;
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
all_pod_files_ok();
5 changes: 5 additions & 0 deletions t/pod_coverage.t
@@ -0,0 +1,5 @@
use Test::More;
eval "use Test::Pod::Coverage 1.04";
plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage"
if $@;
all_pod_coverage_ok();

0 comments on commit 5c3465b

Please sign in to comment.