BankAccount-Validator-UK
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
98991001011021031041051061071081091101111121131141151161171180.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.
303132333435363738394041424344454647484950
"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"
: {
23242526272829303132333435363738
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
192021222324252627282930313233343536373839
'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
view all matches for this distribution
111213141516171819202122232425262728293031Version 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 release on metacpan - search on metacpan
( run in 1.001 second using v1.00-cache-2.02-grep-82fe00e-cpan-5f0c44f8eee )