No commit activity in last 3 years
No release in over 3 years
An unofficial library for Keybase. This library is a wrapper over three individual libraries. keybase-unofficial-core provides core utility methods, keybase-unofficial-api provides an interface to Keybase's REST API, and keybase-unofficial-local provides an interface to a local Keybase installation's functionality.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Project Readme

keybase-unofficial

Gem Version

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"