BankAccount-Validator-UK

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
0.37  2018-03-16T18:10:00:+01:00
      - Updated the valacdos.txt (v4.80)
      - Added sort code range 232290-232290 for Mod11.
      - Added sort code range 040082-040082 for Mod10.
 
0.36  2018-02-26T10:30:00:+01:00
      - Improved data loading.
 
0.35  2018-02-25T16:30:00:+01:00
      - Used namespace::autoclean instead.
 
0.34  2018-02-23T15:35:00:+01:00
      - Updated the valacdos.txt (v4.70)
      - Added sort code range 302880 - 302880 for Mod11.
 
0.33  2017-09-14T11:25:00:+01:00
      - Updated the valacdos.txt (v4.60)
      - Added sort code range 040072-040073
      - Changed sort code range 040406-040406 to 040400-041399.
      - Amended sort code range 040010-040059 to 040020-040059.

META.json  view on Meta::CPAN

30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
      "requires" : {
         "ExtUtils::MakeMaker" : "0",
         "File::ShareDir::Install" : "0.13"
      }
   },
   "runtime" : {
      "requires" : {
         "File::ShareDir" : "1.114",
         "Moo" : "2.000000",
         "autodie" : "2.26",
         "namespace::autoclean" : "0.28",
         "perl" : "5.006"
      }
   }
},
"provides" : {
   "BankAccount::Validator::UK" : {
      "file" : "lib/BankAccount/Validator/UK.pm",
      "version" : "0.66"
   },
   "BankAccount::Validator::UK::Rule" : {

META.yml  view on Meta::CPAN

23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  BankAccount::Validator::UK:
    file: lib/BankAccount/Validator/UK.pm
    version: '0.66'
  BankAccount::Validator::UK::Rule:
    file: lib/BankAccount/Validator/UK/Rule.pm
    version: '0.66'
requires:
  File::ShareDir: '1.114'
  Moo: '2.000000'
  autodie: '2.26'
  namespace::autoclean: '0.28'
  perl: '5.006'
resources:
version: '0.66'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

Makefile.PL  view on Meta::CPAN

19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
    'ExtUtils::MakeMaker'     => 0,
    'File::ShareDir::Install' => '0.13',
},
BUILD_REQUIRES   => {
    'Test::More' => 0,
    'Test::Exception' => 0,
},
PREREQ_PM => {
    'autodie'              => '2.26',
    'Moo'                  => '2.000000',
    'namespace::autoclean' => '0.28',
    'File::ShareDir'       => '1.114',
},
dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'BankAccount-Validator-UK-*' },
(eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
    'meta-spec' => { version => 2 },
    provides    => {
        'BankAccount::Validator::UK'       => { file => 'lib/BankAccount/Validator/UK.pm'     , version => '0.66' },
        'BankAccount::Validator::UK::Rule' => { file => 'lib/BankAccount/Validator/UK/Rule.pm', version => '0.66' },
    },

lib/BankAccount/Validator/UK.pm  view on Meta::CPAN

11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Version 0.66
 
=cut
 
use 5.006;
use Data::Dumper;
use BankAccount::Validator::UK::Rule;
 
use Moo;
use namespace::autoclean;
 
has sc         => (is => 'rw');
has an         => (is => 'rw');
has mod        => (is => 'rw');
has attempt    => (is => 'rw');
has last_ex    => (is => 'rw');
has trace      => (is => 'rw');
has debug      => (is => 'ro', default => sub { 0 });
has last_check => (is => 'rw', default => sub { 0 });
has multi_rule => (is => 'ro', default => sub { 0 });

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

( run in 1.001 second using v1.00-cache-2.02-grep-82fe00e-cpan-5f0c44f8eee )