Initial shell for Catalyst-Manual
Jonathan Rockway [Fri, 20 Oct 2006 08:25:31 +0000 (08:25 +0000)]
Changes [new file with mode: 0644]
MANIFEST [new file with mode: 0644]
Makefile.PL [new file with mode: 0644]
README [new file with mode: 0644]
t/pod-coverage.t [new file with mode: 0644]
t/pod.t [new file with mode: 0644]

diff --git a/Changes b/Changes
new file mode 100644 (file)
index 0000000..bae82da
--- /dev/null
+++ b/Changes
@@ -0,0 +1,4 @@
+Revision history for Catalyst-Manual
+
+5.700301  20 October 2006
+          Splitting manual into its own distro
diff --git a/MANIFEST b/MANIFEST
new file mode 100644 (file)
index 0000000..d808924
--- /dev/null
+++ b/MANIFEST
@@ -0,0 +1,6 @@
+Changes
+Makefile.PL
+MANIFEST                       This list of files
+README
+t/pod-coverage.t
+t/pod.t
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..485d9d3
--- /dev/null
@@ -0,0 +1,16 @@
+use strict;
+use warnings;
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+    NAME                => 'Catalyst::Manual',
+    AUTHOR              => 'Jonathan Rockway <jrockway@cpan.org>',
+    VERSION             => '5.700301',
+    ABSTRACT            => q{The Catalyst Developer's Manual},
+    PL_FILES            => {},
+    PREREQ_PM => {
+        'Test::More' => 0,
+    },
+    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
+    clean               => { FILES => 'Catalyst-Manual-*' },
+);
diff --git a/README b/README
new file mode 100644 (file)
index 0000000..1a22d23
--- /dev/null
+++ b/README
@@ -0,0 +1,11 @@
+Catalyst-Manual
+
+This is just the Catalyst manual.  If you want to develop Catalyst
+apps, please install Catalyst::Devel.  If you'd like a tutorial and a
+full example Catalyst application, please intall
+Task::Catalyst::Tutorial.
+
+If you just want to run Catalyst applications, you probably don't need
+this manual, but you do need Catalyst::Runtime.
+
+http://dev.catalystframework.org/
diff --git a/t/pod-coverage.t b/t/pod-coverage.t
new file mode 100644 (file)
index 0000000..703f91d
--- /dev/null
@@ -0,0 +1,6 @@
+#!perl -T
+
+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();
diff --git a/t/pod.t b/t/pod.t
new file mode 100644 (file)
index 0000000..976d7cd
--- /dev/null
+++ b/t/pod.t
@@ -0,0 +1,6 @@
+#!perl -T
+
+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();