[Bps-public-commit] r11188 - in WebChart: . lib lib/WebChart lib/WebChart/Renderer
sunnavy at bestpractical.com
sunnavy at bestpractical.com
Tue Mar 25 21:55:04 EDT 2008
Author: sunnavy
Date: Tue Mar 25 21:55:03 2008
New Revision: 11188
Added:
WebChart/
WebChart/Changes
WebChart/MANIFEST
WebChart/Makefile.PL
WebChart/README
WebChart/lib/
WebChart/lib/WebChart/
WebChart/lib/WebChart.pm
WebChart/lib/WebChart/Renderer/
WebChart/t/
WebChart/t/00.load.t
WebChart/t/perlcritic.t
WebChart/t/pod-coverage.t
WebChart/t/pod.t
Log:
added WebChart
Added: WebChart/Changes
==============================================================================
--- (empty file)
+++ WebChart/Changes Tue Mar 25 21:55:03 2008
@@ -0,0 +1,5 @@
+Revision history for WebChart
+
+0.0.1 Sat Mar 8 01:24:28 2008
+ Initial release.
+
Added: WebChart/MANIFEST
==============================================================================
--- (empty file)
+++ WebChart/MANIFEST Tue Mar 25 21:55:03 2008
@@ -0,0 +1,9 @@
+Changes
+MANIFEST
+Makefile.PL
+README
+lib/WebChart.pm
+t/00.load.t
+t/perlcritic.t
+t/pod-coverage.t
+t/pod.t
Added: WebChart/Makefile.PL
==============================================================================
--- (empty file)
+++ WebChart/Makefile.PL Tue Mar 25 21:55:03 2008
@@ -0,0 +1,12 @@
+use inc::Module::Install;
+
+name 'WebChart';
+all_from 'lib/WebChart.pm';
+author 'sunnavy <sunnavy at bestpractical.com>';
+
+build_requires 'Test::More';
+
+auto_install;
+
+WriteAll;
+
Added: WebChart/README
==============================================================================
--- (empty file)
+++ WebChart/README Tue Mar 25 21:55:03 2008
@@ -0,0 +1,13 @@
+WebChart version 0.0.1
+
+
+INSTALLATION
+
+To install this module, run the following commands:
+
+ perl Makefile.PL
+ make
+ make test
+ make install
+
+
Added: WebChart/lib/WebChart.pm
==============================================================================
--- (empty file)
+++ WebChart/lib/WebChart.pm Tue Mar 25 21:55:03 2008
@@ -0,0 +1,61 @@
+package WebChart;
+
+use warnings;
+use strict;
+use Carp;
+
+our $VERSION = '0.01';
+
+
+1;
+
+__END__
+
+=head1 NAME
+
+WebChart -
+
+
+=head1 VERSION
+
+This document describes WebChart version 0.0.1
+
+
+=head1 SYNOPSIS
+
+ use WebChart;
+
+=head1 DESCRIPTION
+
+
+=head1 INTERFACE
+
+
+
+=head1 DEPENDENCIES
+
+
+None.
+
+
+=head1 INCOMPATIBILITIES
+
+None reported.
+
+
+=head1 BUGS AND LIMITATIONS
+
+No bugs have been reported.
+
+=head1 AUTHOR
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+
+=head1 LICENCE AND COPYRIGHT
+
+Copyright 2008 Best Practical Solutions.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Added: WebChart/t/00.load.t
==============================================================================
--- (empty file)
+++ WebChart/t/00.load.t Tue Mar 25 21:55:03 2008
@@ -0,0 +1,7 @@
+use Test::More tests => 1;
+
+BEGIN {
+use_ok( 'WebChart' );
+}
+
+diag( "Testing WebChart $WebChart::VERSION" );
Added: WebChart/t/perlcritic.t
==============================================================================
--- (empty file)
+++ WebChart/t/perlcritic.t Tue Mar 25 21:55:03 2008
@@ -0,0 +1,8 @@
+use strict;
+use warnings;
+
+use Test::More;
+eval "use Test::Perl::Critic 0.0.8";
+plan skip_all => "Test::Perl::Critic 0.0.8 required for testing PBP compliance" if $@;
+
+Test::Perl::Critic::all_critic_ok();
Added: WebChart/t/pod-coverage.t
==============================================================================
--- (empty file)
+++ WebChart/t/pod-coverage.t Tue Mar 25 21:55:03 2008
@@ -0,0 +1,8 @@
+use strict;
+use warnings;
+
+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();
Added: WebChart/t/pod.t
==============================================================================
--- (empty file)
+++ WebChart/t/pod.t Tue Mar 25 21:55:03 2008
@@ -0,0 +1,7 @@
+use strict;
+use warnings;
+
+use Test::More;
+eval "use Test::Pod 1.14";
+plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
+all_pod_files_ok();
More information about the Bps-public-commit
mailing list