Active Merchant is a simple payment abstraction library extracted from Shopify. The aim of the project is to feel natural to Ruby users and to abstract as many parts as possible away from the user to offer a consistent interface across all supported gateways.
I have a client who uses custom code to create Electronic Funds Transfer via Wirecard based on an old version of active_merchant.
My job is to update the code, so users can use IBAN/BIC to transfer money.
I haven't found much in active_merchant about using IBAN or EFT at all and the approach seems to be more like "we only do credit cards".
So would you like to get contributions regarding this functionality? What would the creditcard_type be named?
@rmetzler I'd recommend just continuing to handle this in custom code; ActiveMerchant does have the Check object for ACH/EFT, but it's little used and little supported.
I have a client who uses custom code to create Electronic Funds Transfer via Wirecard based on an old version of active_merchant. My job is to update the code, so users can use IBAN/BIC to transfer money.
I haven't found much in active_merchant about using IBAN or EFT at all and the approach seems to be more like "we only do credit cards".
So would you like to get contributions regarding this functionality? What would the creditcard_type be named?