Skip to content

Latest commit

 

History

History
29 lines (16 loc) · 569 Bytes

README.md

File metadata and controls

29 lines (16 loc) · 569 Bytes

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