Skip to content

wallclockbuilder/selcom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Selcom Code Climate

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

  1. Fork it ( https://github.com/wallclockbuilder/selcom )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

About

Wrapper for Selcom API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages