Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/larrylv/am-issue-1667

https://github.com/Shopify/active_merchant/issues/1667
https://github.com/larrylv/am-issue-1667

Last synced: about 2 months ago
JSON representation

https://github.com/Shopify/active_merchant/issues/1667

Awesome Lists containing this project

README

        

``` bash
$ bundle install
$ cat console
#!/usr/bin/env ruby

require 'bundler'
Bundler.setup

require 'activemerchant'

credit_card = ActiveMerchant::Billing::CreditCard.new(
number: '4111111111111111',
month: 12,
year: 18,
first_name: 'Test',
last_name: 'User',
verification_value: '123'
)

require 'pry'; binding.pry
$ ./console
```