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