Sha256: 2fc904e66152f7885b8b92b946d1a0249da5a965d0de0c4e2343afc87fa151db

Contents?: true

Size: 1.01 KB

Versions: 4

Compression:

Stored size: 1.01 KB

Contents


This gem aims to be a full-fledged solution for the ecircle API, the [synchronous one](http://webservices.ecircle-ag.com/soap/javadoc/com/ecircleag/webservices/EcMApi.html) and the [asynchronous one](http://developer.ecircle-ag.com/apiwiki/wiki/AsynchronousAPI).

This is WIP and far from complete.

Features
-------------

So far just a couple of methods:

* create_member
* create_or_update_user_by_email
* delete_member
* logon
* send_parametrized_single_message_to_user

To do
-------------

* Rethink current structure e.g.
 * doing an explicit logon in every method is ugly at best
 * inefficient handling of session token (we could and should reuse it instead of requesting a new one every time)
* Implement missing API methods
* Specs
* RDoc

Configuration
-------------

```Ruby
Ecircle.configure do |config|
  config.user     = 'your@user.com'
  config.realm    = 'http://your.realm.com'
  config.password = 'your_password'
end
```

Usage
-------------

```Ruby
Ecircle.create_or_update_user_by_email 'user@email.com'
```

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ecircle-0.0.5 README.md
ecircle-0.0.4 README.md
ecircle-0.0.3 README.md
ecircle-0.0.2 README.md