We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc3b430 commit 0afb67cCopy full SHA for 0afb67c
README.md
@@ -80,11 +80,11 @@ or as ActiveModel Validator (make sure you have 'active_model' in your Gemfile)
80
81
# paramters: IBAN, BIC
82
contact = Bank::Contact.new('DE89 3704 0044 0532 0130 00', 'BYLADEM1203')
83
- contact.iban
84
- contact.bic
85
- contact.to_h
86
- contact.to_a
87
- contact.valid?
+ contact.iban # <Bank::IBAN...>
+ contact.bic # <Bank::BIC...>
+ contact.to_h # {:iban=>"DE89370400440532013000", :bic=>"BYLADEM1203"}
+ contact.to_a # ["DE89370400440532013000", "BYLADEM1203"]
+ contact.valid? # true
88
89
90
## Contributing
0 commit comments