Project

xednese

0.0
No commit activity in last 3 years
No release in over 3 years
Xednese provides an easy to use client for interacting with the Esendex REST API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 5.2
~> 1.0
~> 10.1
~> 1.17

Runtime

~> 1.6
~> 0.2.0
~> 0.1.0
 Project Readme

Xednese

require 'xednese'

esendex = Esendex.new('me@company.com', 'password')
p esendex.messages.sent.first.summary
#=> "..."

account = esendex.account("EX0000")
response = account.dispatcher.send('Hey guys', '445275XXX')
p response.message_headers.map(&:id)
#=> ["..."]

Xednese is a client library for interacting with the Esendex REST API. It is currently under active development and should not be considered stable enough for general use.

Running locally

Clone the repo, then to run the tests:

$ gen install bundler
$ bundle install
$ bundle exec rake
...