This gem makes it possible to use the Selcom API without having to deal with XML RPC.
Add this line to your application's Gemfile:
gem'selcom'And then execute:
$ bundle
Or install it yourself as:
$ gem install selcom
set your API credentials:
require'selcom'Selcom.configuredo |config|
config.api_key='...'config.api_signature='...'endSend money:
selcom=Selcom::SendMoney.new(:mobile_number=>"...",:amount=>500,:telco_id=>'...')ifsend_money.send!putsselcom.referenceputsselcom.sent_amountputsselcom.successputsselcom.status_codeputsselcom.status_descriptionelseputsselcom.responseend- 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