No versions in use statements - encourages shit like autorequires
Peter Rabbitson [Sun, 23 Sep 2012 16:27:20 +0000 (18:27 +0200)]
lib/SQL/Translator.pm
lib/SQL/Translator/Parser/XML/SQLFairy.pm
lib/SQL/Translator/Schema.pm
lib/SQL/Translator/Schema/Constraint.pm
lib/SQL/Translator/Schema/Field.pm
lib/SQL/Translator/Schema/Index.pm
lib/SQL/Translator/Schema/Procedure.pm
lib/SQL/Translator/Schema/Table.pm
lib/SQL/Translator/Schema/Trigger.pm
lib/SQL/Translator/Schema/View.pm

index 9a1e235..988e117 100644 (file)
@@ -1,6 +1,6 @@
 package SQL::Translator;
 
-use Moo 1.000003;
+use Moo;
 our ( $DEFAULT_SUB, $DEBUG, $ERROR );
 
 our $VERSION  = '0.11013_02';
index fc128f1..91d5904 100644 (file)
@@ -90,7 +90,7 @@ use base qw(Exporter);
 
 use base qw/SQL::Translator::Parser/;  # Doesnt do anything at the mo!
 use SQL::Translator::Utils 'debug';
-use XML::LibXML 1.69;
+use XML::LibXML;
 use XML::LibXML::XPathContext;
 
 sub parse {
index 81e1afd..fc5f3a7 100644 (file)
@@ -26,7 +26,7 @@ returns the database structure.
 
 =cut
 
-use Moo 1.000003;
+use Moo;
 use SQL::Translator::Schema::Constants;
 use SQL::Translator::Schema::Procedure;
 use SQL::Translator::Schema::Table;
index 2f4192b..d726aa5 100644 (file)
@@ -23,7 +23,7 @@ C<SQL::Translator::Schema::Constraint> is the constraint object.
 
 =cut
 
-use Moo 1.000003;
+use Moo;
 use SQL::Translator::Schema::Constants;
 use SQL::Translator::Utils qw(ex2err throw);
 use SQL::Translator::Role::ListAttr;
index 3fec27a..d8680cb 100644 (file)
@@ -22,7 +22,7 @@ C<SQL::Translator::Schema::Field> is the field object.
 
 =cut
 
-use Moo 1.000003;
+use Moo;
 use SQL::Translator::Schema::Constants;
 use SQL::Translator::Types qw(schema_obj);
 use SQL::Translator::Utils qw(parse_list_arg ex2err throw carp_ro);
index 1c7769d..5363745 100644 (file)
@@ -25,7 +25,7 @@ Primary and unique keys are table constraints, not indices.
 
 =cut
 
-use Moo 1.000003;
+use Moo;
 use SQL::Translator::Schema::Constants;
 use SQL::Translator::Utils qw(ex2err throw);
 use SQL::Translator::Role::ListAttr;
index 1a291e3..7236f22 100644 (file)
@@ -27,7 +27,7 @@ stored procedures (and possibly other pieces of nameable SQL code?).
 
 =cut
 
-use Moo 1.000003;
+use Moo;
 use SQL::Translator::Utils qw(ex2err);
 use SQL::Translator::Role::ListAttr;
 use SQL::Translator::Types qw(schema_obj);
index 2f36e9b..7d2d534 100644 (file)
@@ -19,7 +19,7 @@ C<SQL::Translator::Schema::Table> is the table object.
 
 =cut
 
-use Moo 1.000003;
+use Moo;
 use SQL::Translator::Utils qw(parse_list_arg ex2err throw carp_ro);
 use SQL::Translator::Types qw(schema_obj);
 use SQL::Translator::Role::ListAttr;
index 7eab2af..8db8b5f 100644 (file)
@@ -28,7 +28,7 @@ C<SQL::Translator::Schema::Trigger> is the trigger object.
 
 =cut
 
-use Moo 1.000003;
+use Moo;
 use SQL::Translator::Utils qw(parse_list_arg ex2err throw);
 use SQL::Translator::Types qw(schema_obj enum);
 use List::MoreUtils qw(uniq);
index 421b762..c19501b 100644 (file)
@@ -23,7 +23,7 @@ C<SQL::Translator::Schema::View> is the view object.
 
 =cut
 
-use Moo 1.000003;
+use Moo;
 use SQL::Translator::Utils qw(ex2err);
 use SQL::Translator::Types qw(schema_obj);
 use SQL::Translator::Role::ListAttr;