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 2023-05-30).
UkAccountValidator::Validator.new(account_number, sort_code).valid?
or
validator = UkAccountValidator::Validator.new
validator.account_number = account_number
validator.sort_code = sort_code
validator.valid?
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
- Fork it ( https://github.com/ball-hayden/uk_account_validator/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request