No commit activity in last 3 years
No release in over 3 years
IBAN rails validator with iso-iban.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

ActiveRecord Validator for IBAN

This gem adds a validator to active_record obejcts for IBAN. It works on top of the gem 'iso-iban'.

Installation

Add this line to your application's Gemfile:

gem 'iso-iban_validation'

And then execute:

$ bundle

Or install it yourself as:

$ gem install iso-iban_validation

Usage

Just insert into your model one of the following variants of the validation:

validates_iban_format_of :iban_field

or

validates_iban_of :iban_field

or

validates :iban_field, iban: true

Error translations

The following error keys should be defined

  • :invalid_characters
  • :invalid_country
  • :invalid_checksum
  • :invalid_length
  • :invalid_format

Dependency

Licence

Contributing

  1. Fork it ( https://github.com/raskhadafi/iso-iban_validation/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