UkAccountValidator

This gem validates uk account numbers against their sort codes in accordance with VocaLink's modulus checking specification, which can be downloaded from here.

Note that this gem ensures the sort code and account number are valid, not that they exist.

NB the resource text files valacdos.txt and scsubtab.txt are produced and released by VocaLink.

Requires Ruby > 2.0.0

Modulus weight table data can be found here.

Forked 2018-10-18 by Auctionet.com to get fresh data available under a new gem name.

Usage

UkAccountValidator::Validator.new(, sort_code).valid?

or

validator = UkAccountValidator::Validator.new
validator. = 
validator.sort_code      = sort_code
validator.valid?

Installation

Add this line to your application's Gemfile:

gem 'uk_account_validator_auctionet'

And then execute:

$ bundle

Or install it yourself as:

$ gem install uk_account_validator_auctionet