A Ruby wrapper for the Softers SMS API

Build Status

Installation

Add this line to your application's Gemfile:

gem 'softers-sms'

And then execute:

$ bundle

Or install it yourself as:

$ gem install softers-sms

Usage

Construct a client object with your Softers API credentials:

@client = SoftersSms::Client.new('...username...', '...password...')
@client.send_message({to_phone: '+3585551144', message: 'Hey!'})

Contributing

  1. Fork it
  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 new Pull Request

Credits

This gem is influenced by Nexmo gem, originally by Tim Craft