
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
IBAN & BIC information, validation and formatting. Ships with ActiveModel validators.
Add this line to your application's Gemfile:
gem 'bank-contact'
And then execute:
$ bundle
Or install it yourself as:
$ gem install bank-contact
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
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
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
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that bank-contact demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.