Sha256: ce57b5c668ba7bc2e4957cbce7051164b769add8af49074dcd4f5e42ec6d9192

Contents?: true

Size: 719 Bytes

Versions: 2

Compression:

Stored size: 719 Bytes

Contents

# action_kit_rest

A ruby binding for the ActionKit REST API

[![Build Status](https://travis-ci.org/controlshift/action_kit_rest.svg)](https://travis-ci.org/controlshift/action_kit_rest)

## 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

2 entries across 2 versions & 1 rubygems

Version Path
action_kit_rest-0.2.2 README.md
action_kit_rest-0.2.1 README.md