Sha256: 717f42982b569f78a876b081794ca60355bb456b6a69c3f05937e696b628ccc4

Contents?: true

Size: 893 Bytes

Versions: 1

Compression:

Stored size: 893 Bytes

Contents

# IronMotion

A RubyMotion wrapper for [Iron.io's](http://iron.io) REST API.

So far, only [IronWorker](http://www.iron.io/products/worker) is partially supported.

## Installation

Add this line to your application's Gemfile:

    gem 'iron-motion'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install iron-motion

## Usage

```ruby

IronMotion.init(:oauth_token => "12345thisisanoauthtoken6789")
projects = IronMotion::Projects.all
project = projects.first
project.getTasks do |tasks|
  puts tasks.first.id
  puts tasks.first.code_name
end
project.getCodes do |codes|
  puts codes.first.id
  puts codes.first.name
end

```

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
iron-motion-0.0.1 README.md