Hide deprecated stuff
Peter Rabbitson [Wed, 9 May 2012 05:25:45 +0000 (07:25 +0200)]
Makefile.PL
lib/SQL/Translator/Schema/Graph.pm
lib/SQL/Translator/Schema/Graph/CompoundEdge.pm
lib/SQL/Translator/Schema/Graph/Edge.pm
lib/SQL/Translator/Schema/Graph/HyperEdge.pm
lib/SQL/Translator/Schema/Graph/Node.pm
lib/SQL/Translator/Schema/Graph/Port.pm

index a2498bf..0c8e661 100644 (file)
@@ -61,6 +61,13 @@ for my $type (qw/requires recommends test_requires/) {
   }
 }
 
+no_index directory => $_ for (qw|
+  lib/SQL/Translator/Schema/Graph
+|);
+no_index package => $_ for (qw|
+  SQL::Translator::Schema::Graph
+|);
+
 install_script (qw|
   script/sqlt-diagram
   script/sqlt-diff
index b9ac14d..d040273 100644 (file)
@@ -1,4 +1,5 @@
-package SQL::Translator::Schema::Graph;
+package # hide from pause
+  SQL::Translator::Schema::Graph;
 use strict;
 use warnings;
 
index 6e4860a..bdc9954 100644 (file)
@@ -1,4 +1,5 @@
-package SQL::Translator::Schema::Graph::CompoundEdge;
+package # hide from pause
+  SQL::Translator::Schema::Graph::CompoundEdge;
 
 use strict;
 use warnings;
index bbee535..ade4943 100644 (file)
@@ -1,4 +1,5 @@
-package SQL::Translator::Schema::Graph::Edge;
+package # hide from pause
+  SQL::Translator::Schema::Graph::Edge;
 
 use strict;
 use warnings;
index b9782b6..66faf75 100644 (file)
@@ -1,4 +1,5 @@
-package SQL::Translator::Schema::Graph::HyperEdge;
+package # hide from pause
+  SQL::Translator::Schema::Graph::HyperEdge;
 
 use strict;
 use warnings;
index 87a037a..9e9ef5a 100644 (file)
@@ -1,4 +1,5 @@
-package SQL::Translator::Schema::Graph::Node;
+package # hide from pause
+  SQL::Translator::Schema::Graph::Node;
 
 use strict;
 use warnings;
index 6ea8968..cc8f755 100644 (file)
@@ -1,4 +1,5 @@
-package SQL::Translator::Schema::Graph::Port;
+package # hide from pause
+  SQL::Translator::Schema::Graph::Port;
 
 use strict;
 use warnings;