Address-PostCode-UK

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

Revision history for Address::PostCode::UK

0.18  2019-01-17T22:30:00+01:00
      - Upgraded to use Address::PostCode::UserAgent 0.09.

0.17  2019-01-13T14:05:00+01:00
      - Updated packages to import namespace::autoclean.

0.16  2019-01-09T12:45:00+01:00
      - Used namespace::autoclean instead.

0.15  2019-01-07T13:00:00+01:00
      - Upgraded to use Address::PostCode::UserAgent 0.08.

0.14  2018-10-09T12:40:00+01:00
      - Merged pull request #1 from lancew/master (Travis + CONTRIBUTING.md).

0.13  2017-04-01T02:55:00+01:00
      - Added test scripts (t/meta-json.t and t/meta-yml.t).
      - Fixed typo in the package version.

META.json  view on Meta::CPAN

      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "Address::PostCode::UserAgent" : "0.09",
            "JSON" : "0",
            "Moo" : "0",
            "namespace::autoclean" : "0.28",
            "perl" : "5.006"
         }
      }
   },
   "provides" : {
      "Address::PostCode::UK" : {
         "file" : "lib/Address/PostCode/UK.pm",
         "version" : "0.18"
      },
      "Address::PostCode::UK::Location" : {

META.yml  view on Meta::CPAN

  Address::PostCode::UK::Place::Geo:
    file: lib/Address/PostCode/UK/Place/Geo.pm
    version: '0.18'
  Address::PostCode::UK::Place::Ward:
    file: lib/Address/PostCode/UK/Place/Ward.pm
    version: '0.18'
requires:
  Address::PostCode::UserAgent: '0.09'
  JSON: '0'
  Moo: '0'
  namespace::autoclean: '0.28'
  perl: '5.006'
resources:
  repository: https://github.com/manwar/Address-PostCode-UK.git
version: '0.18'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

Makefile.PL  view on Meta::CPAN

    MIN_PERL_VERSION   => 5.006,
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => 0,
    },
    BUILD_REQUIRES   => {
        'Test::More' => 0,
    },
    PREREQ_PM  => {
        'JSON' => 0,
        'Moo'  => 0,
        'namespace::autoclean'         => '0.28',
        'Address::PostCode::UserAgent' => '0.09',
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES => 'Address-PostCode-UK-*' },
    (eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
        'meta-spec' => { version => 2 },
        provides    => {
            'Address::PostCode::UK'                      => { file => 'lib/Address/PostCode/UK.pm'                   , version => '0.18' },
            'Address::PostCode::UK::Location'            => { file => 'lib/Address/PostCode/UK/Location.pm'          , version => '0.18' },
            'Address::PostCode::UK::Place'               => { file => 'lib/Address/PostCode/UK/Place.pm'             , version => '0.18' },

lib/Address/PostCode/UK.pm  view on Meta::CPAN

use Data::Dumper;
use Address::PostCode::UserAgent;
use Address::PostCode::UK::Location;
use Address::PostCode::UK::Place;
use Address::PostCode::UK::Place::Geo;
use Address::PostCode::UK::Place::Ward;
use Address::PostCode::UK::Place::Council;
use Address::PostCode::UK::Place::Constituency;

use Moo;
use namespace::autoclean;
extends 'Address::PostCode::UserAgent';

our $BASE_URL = 'http://uk-postcodes.com';

=head1 DESCRIPTION

Interface to the API provided by L<UK Postcodes|http://uk-postcodes.com/>.

=head1 NOTE

lib/Address/PostCode/UK/Location.pm  view on Meta::CPAN

=head1 VERSION

Version 0.18

=cut

use 5.006;
use Data::Dumper;

use Moo;
use namespace::autoclean;

has 'lat'      => (is => 'ro');
has 'lng'      => (is => 'ro');
has 'distance' => (is => 'ro');
has 'postcode' => (is => 'ro');
has 'uri'      => (is => 'ro');

=head1 METHODS

=head2 lat()

lib/Address/PostCode/UK/Place.pm  view on Meta::CPAN

=head1 VERSION

Version 0.18

=cut

use 5.006;
use Data::Dumper;

use Moo;
use namespace::autoclean;

has 'geo'          => (is => 'ro');
has 'council'      => (is => 'ro');
has 'ward'         => (is => 'ro');
has 'constituency' => (is => 'ro');

=head1 METHODS

=head2 geo()

lib/Address/PostCode/UK/Place/Constituency.pm  view on Meta::CPAN

=head1 VERSION

Version 0.18

=cut

use 5.006;
use Data::Dumper;

use Moo;
use namespace::autoclean;

has 'title' => (is => 'ro');
has 'uri'   => (is => 'ro');
has 'code'  => (is => 'ro');

=head1 METHODS

=head2 title()

=head2 uri()

lib/Address/PostCode/UK/Place/Council.pm  view on Meta::CPAN

=head1 VERSION

Version 0.18

=cut

use 5.006;
use Data::Dumper;

use Moo;
use namespace::autoclean;

has 'title' => (is => 'ro');
has 'uri'   => (is => 'ro');
has 'code'  => (is => 'ro');

=head1 METHODS

=head2 title()

=head2 uri()

lib/Address/PostCode/UK/Place/Geo.pm  view on Meta::CPAN

=head1 VERSION

Version 0.18

=cut

use 5.006;
use Data::Dumper;

use Moo;
use namespace::autoclean;

has 'lat'      => (is => 'ro');
has 'lng'      => (is => 'ro');
has 'easting'  => (is => 'ro');
has 'northing' => (is => 'ro');
has 'geohash'  => (is => 'ro');

=head1 METHODS

=head2 lat()

lib/Address/PostCode/UK/Place/Ward.pm  view on Meta::CPAN

=head1 VERSION

Version 0.18

=cut

use 5.006;
use Data::Dumper;

use Moo;
use namespace::autoclean;

has 'title' => (is => 'ro');
has 'uri'   => (is => 'ro');
has 'code'  => (is => 'ro');

=head1 METHODS

=head2 title()

=head2 uri()

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.961 second using v1.00-cache-2.02-grep-82fe00e-cpan-c98054f2a92 )