noko

Gem Version Build Status

Ruby client for Version 2 of the Noko/Freckle API.

Install

Install using RubyGems:

$ gem install noko

Add it to your Gemfile and install using Bundler:

gem 'noko'

Clone the repository:

git clone git@github.com:timcraft/noko.git

Quick start

require 'noko'

noko = Noko::Client.new(token: 'YOUR PERSONAL ACCESS TOKEN')

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