Worldpay
Use Worldpay/Clearwater with this gem
Installation
Add this line to your application's Gemfile:
gem 'worldpay'
And then execute:
$ bundle
Or install it yourself as:
$ gem install worldpay
Usage
require "worldpay"
wp = Worldpay.new('api_key', 3)
wp.Order::createOrder({
'token' => 'worldpay-token',
'orderDescription' => 'order description',
'amount' => 2000,
'currencyCode' => 'GBP',
'name' => 'name',
'orderType' => 'order type',
'customerOrderCode' => 'customer order code'
})
Contributing
- Fork it ( https://github.com/ao/clearwater-lib-ruby/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request