This is the unofficial Quip API Ruby client library, a personal project that is no longer maintained.
Add this line to your application's Gemfile:
gem 'quip'
And then execute:
$ bundle
Or install it yourself as:
$ gem install quip
client = Quip::QuipClient.new(access_token: '...')
user = client.get_authenticated_user()
desktop = client.get_folder(user['desktop_folder_id'])
puts "There are #{desktop['children'].length} items on the desktop"
- Fork it ( http://github.com/jacamat/quip-ruby/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request