Navigation Menu

Skip to content

Commit

Permalink
Remove all mentions of $VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
autarch committed Apr 3, 2013
1 parent 6eb63f2 commit 9d138cb
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lib/DateTime/Format/Builder.pm
Expand Up @@ -7,7 +7,7 @@ use DateTime 0.12;
use Params::Validate qw(
validate SCALAR ARRAYREF HASHREF SCALARREF CODEREF GLOB GLOBREF UNDEF
);
use vars qw( $VERSION %dispatch_data );
use vars qw( %dispatch_data );

my $parser = 'DateTime::Format::Builder::Parser';

Expand Down
1 change: 0 additions & 1 deletion lib/DateTime/Format/Builder/Parser.pm
@@ -1,6 +1,5 @@
package DateTime::Format::Builder::Parser;
use strict;
use vars qw( $VERSION );
use Carp qw( croak );
use Params::Validate qw(
validate SCALAR CODEREF UNDEF ARRAYREF
Expand Down
2 changes: 1 addition & 1 deletion lib/DateTime/Format/Builder/Parser/Dispatch.pm
@@ -1,6 +1,6 @@
package DateTime::Format::Builder::Parser::Dispatch;
use strict;
use vars qw( $VERSION %dispatch_data );
use vars qw( %dispatch_data );
use Params::Validate qw( CODEREF validate );
use DateTime::Format::Builder::Parser;

Expand Down
2 changes: 1 addition & 1 deletion lib/DateTime/Format/Builder/Parser/Quick.pm
@@ -1,6 +1,6 @@
package DateTime::Format::Builder::Parser::Quick;
use strict;
use vars qw( $VERSION %dispatch_data );
use vars qw( %dispatch_data );
use Params::Validate qw( SCALAR OBJECT CODEREF validate );
use base qw( DateTime::Format::Builder::Parser );

Expand Down
2 changes: 1 addition & 1 deletion lib/DateTime/Format/Builder/Parser/Regex.pm
Expand Up @@ -62,7 +62,7 @@ it likes. So long as it's 'true'.
=cut

use strict;
use vars qw( $VERSION @ISA );
use vars qw( @ISA );
use Params::Validate qw( validate ARRAYREF SCALARREF HASHREF CODEREF );

use DateTime::Format::Builder::Parser::generic;
Expand Down
2 changes: 1 addition & 1 deletion lib/DateTime/Format/Builder/Parser/Strptime.pm
Expand Up @@ -21,7 +21,7 @@ on valid patterns.
=cut

use strict;
use vars qw( $VERSION @ISA );
use vars qw( @ISA );
use Params::Validate qw( validate SCALAR HASHREF );

use DateTime::Format::Builder::Parser::generic;
Expand Down
1 change: 0 additions & 1 deletion lib/DateTime/Format/Builder/Parser/generic.pm
@@ -1,6 +1,5 @@
package DateTime::Format::Builder::Parser::generic;
use strict;
use vars qw( $VERSION );
use Carp;
use Params::Validate qw(
validate SCALAR CODEREF UNDEF
Expand Down

0 comments on commit 9d138cb

Please sign in to comment.