Skip to content
/ noko Public

Ruby client for the Noko API

License

Notifications You must be signed in to change notification settings

timcraft/noko

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

noko

Gem Version Test Status

Ruby client for the Noko API.

Install

Using Bundler:

$ bundle add noko

Using RubyGems:

$ gem install noko

Getting started

require 'noko'

noko = Noko::Client.new(token: ENV.fetch('NOKO_TOKEN'))

noko.get_projects.each do |project|
  puts project.name
end