Sha256: e6ea6aec8715caa12b62d5fb4e7be0f35bb862bf6a87960bf944e02251658847

Contents?: true

Size: 592 Bytes

Versions: 1

Compression:

Stored size: 592 Bytes

Contents

# action_kit_rest

A ruby binding for the ActionKit REST API

## Usage

```ruby

ak = ActionKitRest.new(host: 'roboticdogs.actionkit.com', username: 'name', password: 'pass')
ak.import_page.create(title: "Title", name: "name")
ak.import_page.list.each do | page |
  puts page.name
end

```

With eventmachine:

```ruby
ak = ActionKitRest.new(host: 'roboticdogs.actionkit.com', username: 'name', password: 'pass', adapter: :em_synchrony)
```

This is very experimental still, but starting to be usable.

## Copyright

Copyright (c) 2013 ControlShift Ltd. See LICENSE.txt for
further details.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
action_kit_rest-0.2.0 README.md