UkAccountValidator

Build Status

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. (Last verified data was downloaded 2020-04-06).

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'

And then execute:

$ bundle

Or install it yourself as:

$ gem install uk_account_validator

Contributing

  1. Fork it ( https://github.com/ball-hayden/uk_account_validator/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request