Skip to content
This repository has been archived by the owner on Apr 13, 2020. It is now read-only.

Commit

Permalink
Add explicit VERSION to every Perl module
Browse files Browse the repository at this point in the history
  • Loading branch information
kaoru committed Jun 4, 2014
1 parent db100ea commit 9e3bde1
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/Geo/Coder/Many/Generic.pm
Expand Up @@ -6,6 +6,8 @@ use Carp;

use Geo::Coder::Many::Response;

our $VERSION = '0.01';

=head1 NAME
Geo::Coder::Many::Generic - Base plugin class
Expand Down
2 changes: 2 additions & 0 deletions lib/Geo/Coder/Many/Response.pm
Expand Up @@ -3,6 +3,8 @@ package Geo::Coder::Many::Response;
use strict;
use warnings;

our $VERSION = '0.01';

=head1 NAME
Geo::Coder::Many::Response - standard geocoder response container object
Expand Down
2 changes: 2 additions & 0 deletions lib/Geo/Coder/Many/Scheduler.pm
Expand Up @@ -4,6 +4,8 @@ use strict;
use warnings;
use Carp;

our $VERSION = '0.01';

=head1 NAME
Scheduler - Abstract base class for schedulers.
Expand Down
2 changes: 2 additions & 0 deletions lib/Geo/Coder/Many/Scheduler/OrderedList.pm
Expand Up @@ -5,6 +5,8 @@ use warnings;

use base 'Geo::Coder::Many::Scheduler';

our $VERSION = '0.01';

=head1 NAME
Geo::Coder::Many::Scheduler::OrderedList - Ordered list scheduler
Expand Down
2 changes: 2 additions & 0 deletions lib/Geo/Coder/Many/Scheduler/Selective.pm
Expand Up @@ -8,6 +8,8 @@ use Carp;

use base 'Geo::Coder::Many::Scheduler';

our $VERSION = '0.01';

=head1 NAME
Geo::Coder::Many::Scheduler::Selective - Scheduler that times out bad geocoders
Expand Down
2 changes: 2 additions & 0 deletions lib/Geo/Coder/Many/Scheduler/UniquenessScheduler.pm
Expand Up @@ -7,6 +7,8 @@ use List::MoreUtils qw( first_index );

use base 'Geo::Coder::Many::Scheduler';

our $VERSION = '0.01';

=head1 NAME
Geo::Coder::Many::Scheduler::UniquenessScheduler - Scheduler base class which
Expand Down
2 changes: 2 additions & 0 deletions lib/Geo/Coder/Many/Scheduler/UniquenessScheduler/WRR.pm
Expand Up @@ -7,6 +7,8 @@ use Carp;

use base 'Geo::Coder::Many::Scheduler::UniquenessScheduler';

our $VERSION = '0.01';

=head1 NAME
Geo::Coder::Many::Scheduler::UniquenessScheduler::WRR - Weighted Round Robin
Expand Down
Expand Up @@ -5,6 +5,8 @@ use warnings;

use base 'Geo::Coder::Many::Scheduler::UniquenessScheduler';

our $VERSION = '0.01';

=head1 NAME
Geo::Coder::Many::Scheduler::WeightedRandom - Weighted random scheduler
Expand Down
2 changes: 2 additions & 0 deletions lib/Geo/Coder/Many/Util.pm
Expand Up @@ -15,6 +15,8 @@ our @EXPORT_OK = qw(
use Exporter;
use base qw(Exporter);

our $VERSION = '0.01';

my $GDXS = Geo::Distance->new;

=head1 NAME
Expand Down

0 comments on commit 9e3bde1

Please sign in to comment.