Project

noko

0.01
A long-lived project that still receives updates
Ruby client for the Noko API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 2
~> 1
 Project Readme

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