This gem makes it possible to use the Selcom API without having to deal with XML RPC.
Installation
Add this line to your application's Gemfile:
gem 'selcom'
And then execute:
$ bundle
Or install it yourself as:
$ gem install selcom
Usage
set your API credentials:
require 'selcom'
Selcom.configure do |config|
config.api_key = '...'
config.api_signature = '...'
end
Send money:
selcom = Selcom::SendMoney.new(:mobile_number => "...", :amount => 500, :telco_id => '...')
if send_money.send!
puts selcom.reference
puts selcom.sent_amount
puts selcom.success
puts selcom.status_code
puts selcom.status_description
else
puts selcom.response
end
Contributing
- Fork it ( https://github.com/wallclockbuilder/selcom )
- 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