Update to hide modules from the PAUSE Indexer.
Scott McWhirter [Thu, 9 Mar 2006 20:50:32 +0000 (20:50 +0000)]
45 files changed:
t/lib/DBICTest.pm
t/lib/DBICTest/BasicRels.pm
t/lib/DBICTest/Extra.pm
t/lib/DBICTest/Extra/Foo.pm
t/lib/DBICTest/ForeignComponent.pm
t/lib/DBICTest/ForeignComponent/TestComp.pm
t/lib/DBICTest/HelperRels.pm
t/lib/DBICTest/Plain.pm
t/lib/DBICTest/Plain/Test.pm
t/lib/DBICTest/Schema.pm
t/lib/DBICTest/Schema/Artist.pm
t/lib/DBICTest/Schema/ArtistUndirectedMap.pm
t/lib/DBICTest/Schema/BasicRels.pm
t/lib/DBICTest/Schema/CD.pm
t/lib/DBICTest/Schema/CD_to_Producer.pm
t/lib/DBICTest/Schema/FourKeys.pm
t/lib/DBICTest/Schema/HelperRels.pm
t/lib/DBICTest/Schema/LinerNotes.pm
t/lib/DBICTest/Schema/OneKey.pm
t/lib/DBICTest/Schema/Producer.pm
t/lib/DBICTest/Schema/SelfRef.pm
t/lib/DBICTest/Schema/SelfRefAlias.pm
t/lib/DBICTest/Schema/Serialized.pm
t/lib/DBICTest/Schema/Tag.pm
t/lib/DBICTest/Schema/Track.pm
t/lib/DBICTest/Schema/TreeLike.pm
t/lib/DBICTest/Schema/TwoKeys.pm
t/testlib/Actor.pm
t/testlib/ActorAlias.pm
t/testlib/Binary.pm
t/testlib/Blurb.pm
t/testlib/CDBase.pm
t/testlib/Director.pm
t/testlib/Film.pm
t/testlib/Lazy.pm
t/testlib/Log.pm
t/testlib/MyBase.pm
t/testlib/MyFilm.pm
t/testlib/MyFoo.pm
t/testlib/MyStar.pm
t/testlib/MyStarLink.pm
t/testlib/MyStarLinkMCPK.pm
t/testlib/Order.pm
t/testlib/OtherFilm.pm
t/testlib/PgBase.pm

index a2eef1b..628696a 100755 (executable)
@@ -1,4 +1,5 @@
-package DBICTest;
+package # hide from PAUSE 
+    DBICTest;
 
 use strict;
 use warnings;
index 9ee0938..0e905df 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::BasicRels;
+package # hide from PAUSE
+    DBICTest::BasicRels;
 
 use DBICTest::Schema;
 use DBICTest::Schema::BasicRels;
index 96f11d9..17418ea 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Extra;
+package # hide from PAUSE 
+    DBICTest::Extra;
 use base 'DBIx::Class::Schema';
 
 __PACKAGE__->load_classes("Foo");
index 9f8670f..2572ac3 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Extra::Foo;
+package # hide from PAUSE 
+    DBICTest::Extra::Foo;
 use base 'DBIx::Class';
 
 __PACKAGE__->load_components(qw/ ResultSetManager Core /);
@@ -6,4 +7,4 @@ __PACKAGE__->table('foo');
 
 sub bar : ResultSet { 'good' }
 
-1;
\ No newline at end of file
+1;
index a701459..333dd26 100644 (file)
@@ -1,5 +1,6 @@
 #   belongs to t/05components.t
-package DBICTest::ForeignComponent;
+package # hide from PAUSE 
+    DBICTest::ForeignComponent;
 use warnings;
 use strict;
 
index ce024ba..cc95940 100644 (file)
@@ -1,5 +1,6 @@
 #   belongs to t/05components.t
-package DBICTest::ForeignComponent::TestComp;
+package # hide from PAUSE
+    DBICTest::ForeignComponent::TestComp;
 use warnings;
 use strict;
 
index 2dec167..93456ed 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::HelperRels;
+package # hide from PAUSE 
+    DBICTest::HelperRels;
 
 use DBICTest::Schema;
 use DBICTest::Schema::HelperRels;
index 313d1fc..03a1976 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Plain;
+package # hide from PAUSE 
+    DBICTest::Plain;
 
 use strict;
 use warnings;
index 4b5e00f..e950278 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Plain::Test;
+package # hide from PAUSE 
+    DBICTest::Plain::Test;
 
 use base 'DBIx::Class::Core';
 
index 8090e51..f2ee2d7 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Schema;
+package # hide from PAUSE 
+    DBICTest::Schema;
 
 use base qw/DBIx::Class::Schema/;
 
index d05526f..43504b3 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Schema::Artist;
+package # hide from PAUSE 
+    DBICTest::Schema::Artist;
 
 use base 'DBIx::Class::Core';
 
index 8e58312..6e888ed 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Schema::ArtistUndirectedMap;
+package # hide from PAUSE 
+    DBICTest::Schema::ArtistUndirectedMap;
 
 use base 'DBIx::Class::Core';
 
index ecb9cef..75e5d34 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Schema::BasicRels;
+package # hide from PAUSE 
+    DBICTest::Schema::BasicRels;
 
 use base 'DBIx::Class::Core';
 
index 4eaba4f..7487644 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Schema::CD;
+package # hide from PAUSE 
+    DBICTest::Schema::CD;
 
 use base 'DBIx::Class::Core';
 
index 762e806..378c58c 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Schema::CD_to_Producer;
+package # hide from PAUSE 
+    DBICTest::Schema::CD_to_Producer;
 
 use base 'DBIx::Class::Core';
 
index f9112fa..71659e6 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Schema::FourKeys;
+package # hide from PAUSE 
+    DBICTest::Schema::FourKeys;
 
 use base 'DBIx::Class::Core';
 
index 59cd0a3..45e0ed8 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Schema::HelperRels;
+package # hide from PAUSE 
+    DBICTest::Schema::HelperRels;
 
 use base 'DBIx::Class::Core';
 
index 1f35b4b..19e4025 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Schema::LinerNotes;
+package # hide from PAUSE 
+    DBICTest::Schema::LinerNotes;
 
 use base qw/DBIx::Class::Core/;
 
index 19387eb..dbe7003 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Schema::OneKey;
+package # hide from PAUSE 
+    DBICTest::Schema::OneKey;
 
 use base 'DBIx::Class::Core';
 
index 01fa843..d1cbc18 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Schema::Producer;
+package # hide from PAUSE 
+    DBICTest::Schema::Producer;
 
 use base 'DBIx::Class::Core';
 
index 48c8290..2817b67 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Schema::SelfRef;\r
+package # hide from PAUSE \r
+    DBICTest::Schema::SelfRef;\r
 \r
 use base 'DBIx::Class::Core';\r
 \r
index 9761d94..9d58a8c 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Schema::SelfRefAlias;\r
+package # hide from PAUSE \r
+    DBICTest::Schema::SelfRefAlias;\r
 \r
 use base 'DBIx::Class::Core';\r
 \r
index 16b73f0..41610da 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Schema::Serialized;
+package # hide from PAUSE 
+    DBICTest::Schema::Serialized;
 
 use base 'DBIx::Class::Core';
 
index 5b4eb20..4fdf230 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Schema::Tag;
+package # hide from PAUSE 
+    DBICTest::Schema::Tag;
 
 use base qw/DBIx::Class::Core/;
 
index 3385a1d..d20c908 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Schema::Track;
+package # hide from PAUSE 
+    DBICTest::Schema::Track;
 
 use base 'DBIx::Class::Core';
 
index 5b3835c..49abb69 100644 (file)
@@ -1,4 +1,5 @@
-package DBICTest::Schema::TreeLike;
+package # hide from PAUSE 
+    DBICTest::Schema::TreeLike;
 
 use base qw/DBIx::Class/;
 
index e4bb1b0..91a6fef 100755 (executable)
@@ -1,4 +1,5 @@
-package DBICTest::Schema::TwoKeys;
+package # hide from PAUSE
+    DBICTest::Schema::TwoKeys;
 
 use base 'DBIx::Class::Core';
 
index 837b095..62bd5ad 100644 (file)
@@ -1,4 +1,5 @@
-package Actor;
+package # hide from PAUSE 
+    Actor;
 
 BEGIN { unshift @INC, './t/testlib'; }
 
index 8dcbcb0..90e3042 100644 (file)
@@ -1,4 +1,5 @@
-package ActorAlias;\r
+package # hide from PAUSE \r
+    ActorAlias;\r
 \r
 BEGIN { unshift @INC, './t/testlib'; }\r
 \r
index d29849f..10ba5b1 100644 (file)
@@ -1,4 +1,5 @@
-package Binary;
+package # hide from PAUSE
+    Binary;
 
 BEGIN { unshift @INC, './t/testlib'; }
 
index 8173cb8..4f4baf0 100644 (file)
@@ -1,4 +1,5 @@
-package Blurb;
+package # hide from PAUSE
+    Blurb;
 
 BEGIN { unshift @INC, './t/testlib'; }
 
index 80d8fc5..22c6262 100644 (file)
@@ -1,4 +1,5 @@
-package CDBase;
+package # hide from PAUSE 
+    CDBase;
 
 use strict;
 use base qw(DBIx::Class::Test::SQLite);
index aa13661..b19a44a 100644 (file)
@@ -1,4 +1,5 @@
-package Director;
+package # hide from PAUSE 
+    Director;
 
 BEGIN { unshift @INC, './t/testlib'; }
 
index 6747656..459015f 100644 (file)
@@ -1,4 +1,5 @@
-package Film;
+package # hide from PAUSE 
+    Film;
 
 BEGIN { unshift @INC, './t/testlib'; }
 use base 'DBIx::Class::Test::SQLite';
index 74dc069..b30c34b 100644 (file)
@@ -1,4 +1,5 @@
-package Lazy;
+package # hide from PAUSE 
+    Lazy;
 
 BEGIN { unshift @INC, './t/testlib'; }
 use base 'DBIx::Class::Test::SQLite';
index af4c6f6..33672b5 100644 (file)
@@ -1,4 +1,5 @@
-package Log;
+package # hide from PAUSE 
+    Log;
 
 BEGIN { unshift @INC, './t/testlib'; }
 use base 'MyBase';
index 4950087..da1e86f 100644 (file)
@@ -1,4 +1,5 @@
-package MyBase;
+package # hide from PAUSE
+    MyBase;
 
 use strict;
 use base qw(DBIx::Class);
index 676a4a9..e0abf44 100644 (file)
@@ -1,4 +1,5 @@
-package MyFilm;
+package # hide from PAUSE 
+    MyFilm;
 
 BEGIN { unshift @INC, './t/testlib'; }
 use base 'MyBase';
index 4ed37d8..fa536ab 100644 (file)
@@ -1,4 +1,5 @@
-package MyFoo;
+package # hide from PAUSE 
+    MyFoo;
 
 BEGIN { unshift @INC, './t/testlib'; }
 use base 'MyBase';
index e8e79b2..f053d1c 100644 (file)
@@ -1,4 +1,5 @@
-package MyStar;
+package # hide from PAUSE 
+    MyStar;
 
 BEGIN { unshift @INC, './t/testlib'; }
 use base 'MyBase';
index fe31e25..74a835c 100644 (file)
@@ -1,4 +1,5 @@
-package MyStarLink;
+package # hide from PAUSE 
+    MyStarLink;
 
 BEGIN { unshift @INC, './t/testlib'; }
 use base 'MyBase';
index f81292f..3e74a5b 100644 (file)
@@ -1,4 +1,5 @@
-package MyStarLinkMCPK;
+package # hide from PAUSE 
+    MyStarLinkMCPK;
 
 BEGIN { unshift @INC, './t/testlib'; }
 use base 'MyBase';
index a48a135..009e10e 100644 (file)
@@ -1,4 +1,5 @@
-package Order;
+package # hide from PAUSE 
+    Order;
 
 BEGIN { unshift @INC, './t/testlib'; }
 
index 2e78316..5d97101 100644 (file)
@@ -1,4 +1,5 @@
-package OtherFilm;
+package # hide from PAUSE 
+    OtherFilm;
 
 use strict;
 use base 'Film';
index c75773b..5428a50 100644 (file)
@@ -1,4 +1,5 @@
-package PgBase;
+package # hide from PAUSE 
+    PgBase;
 
 use strict;
 use base 'DBIx::Class';