keybase-unofficial
An unofficial ruby library for Keybase and the Keybase API.
Work in progress.
Installation
$ gem install keybase-unofficial
Documentation
Documentation for keybase-unofficial is split across its three sublibraries:
Examples
require "keybase"
# reads your local configuration
Keybase::Local.current_user # => "yossarian"
# Chatting API
Keybase::Local::Chat.send_message ["yossarian", "you"], "hello"
# REST API
person = Keybase::API.lookup username: "yossarian"
person.them.profile.bio # => "Computer Science and Philosophy student at the University of Maryland, College Park.\n"