Sha256: defa8c7733149ef8e03276113e90af2204787d469d4d1c9376eb44c910be7997

Contents?: true

Size: 1.43 KB

Versions: 1

Compression:

Stored size: 1.43 KB

Contents

# Liftapp::Client [![Build Status](https://travis-ci.org/jmaddi/liftapp-client.png)](https://travis-ci.org/jmaddi/liftapp-client)

Ruby library to access the Lift.do API. Since there is not yet an official API, this library uses the undocumented mobile app API.

For an example of what you can build, see http://lift-export.herokuapp.com/

## Installation

Add this line to your application's Gemfile:

    gem 'liftapp-client'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install liftapp-client

## Usage

##### Initialize a client and log in
```ruby
client = Liftapp::Client.new('neo@matrix.com', 'whiterabbit')
```

##### Request your profile_hash
```ruby
# Log in with your email/password
puts client.profile_hash
```

##### Request your subscribed habits
```ruby
data = client.dashboard
data['plans'].each do |plan|
  puts plan['name'] + ": " + plan['id'].to_s
end

Cook: 1285
Connect: 20785
Create something: 2818
```

##### Request checkin data for your habit
```ruby
data = client.checkin_data('3280')
puts data['checkins'].inspect
puts data['habit-name']
```

##### Checkin to a habit
```ruby
data = client.dashboard
habit_id = data['plans'][1]['habit']['id']
client.checkin(habit_id)
```


## 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
liftapp-client-0.0.6 README.md