Detected 1 occurrence(s) of ‘[ \t:="']+4[0-9]{12}(?:[0-9]{3})?’:
hant_id
:password => "ABCDEF",#my_virtual_merchant_pin
:user => "123456" # optional,my_virtual_merchant_user_id
)
# set up credit card obj as in main ActiveMerchant example
creditcard = ActiveMerchant::Billing::CreditCard.new(
:brand => 'visa',
:number => '4111111111111111',
:month => 12,
:year => 2013,
:first_name => 'Bob',
:last_name => 'Bobsen',
:verification_value => '123'
)
options = {
:billing_address => {
  :address1 => '123 rails road',
  :zip      => '91234'
},
:email    => 'a@aa.com',
:test_mode => false
}
# run
 
