Bank
IBAN + BIC
Install / Use
/learn @max-power/BankREADME
Bank
IBAN & BIC information, validation and formatting. Ships with ActiveModel validators.
Installation
Add this line to your application's Gemfile:
gem 'bank-contact'
And then execute:
$ bundle
Or install it yourself as:
$ gem install bank-contact
Usage
Bank::IBAN
require 'bank/iban'
iban = Bank::IBAN.new('DE89 3704 0044 0532 0130 00')
iban.country_code # 'DE'
iban.check_digits # '89'
iban.bban # <Bank::BBAN...>
iban.bban.to_s # '370400440532013000'
iban.account_number # '0532013000'
iban.bank_identifier # '37040044'
iban.valid? # true
iban.to_s # 'DE89370400440532013000'
iban.to_s(true) # 'DE89 3704 0044 0532 0130 00'
iban.to_i # 370400440532013000131489
# or
Bank::IBAN.valid? 'DE89 3704 0044 0532 0130 00' # true
or as ActiveModel Validator (make sure you have 'active_model' in your Gemfile)
class Company
include ActiveModel::Model
attr_accessor :iban
validates :iban, iban: true
end
Bank::BIC
require 'bank/bic'
bic = Bank::BIC.new('BYLADEM1203')
bic.bank_code # "BYLA"
bic.country_code # "DE"
bic.location_code # "M1"
bic.branch_code # "203"
bic.to_s # "BYLADEM1203"
bic.to_s(true) # "BYLA DE M1 203"
bic.valid? # true
or as ActiveModel Validator (make sure you have 'active_model' in your Gemfile)
class Company
include ActiveModel::Model
attr_accessor :bic
validates :bic, bic: true
end
Bank::Contact
require 'bank/contact' # this requires 'iban' and 'bic'
# paramters: IBAN, BIC
contact = Bank::Contact.new('DE89 3704 0044 0532 0130 00', 'BYLADEM1203')
contact.iban # <Bank::IBAN...>
contact.bic # <Bank::BIC...>
contact.to_h # {:iban=>"DE89370400440532013000", :bic=>"BYLADEM1203"}
contact.to_a # ["DE89370400440532013000", "BYLADEM1203"]
contact.valid? # true
Contributing
- Fork it ( http://github.com/max-power/bank/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 new Pull Request
Related Skills
node-connect
351.4kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
110.7kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
351.4kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
351.4kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。


