Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 744 Bytes

README.md

File metadata and controls

40 lines (24 loc) · 744 Bytes

freckles

Gem Version Build Status

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

Install

Install using RubyGems:

$ gem install freckles

Add it to your Gemfile and install using Bundler:

gem 'freckles', require: 'freckle'

Clone the repository:

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

Quick start

require 'freckle'

freckle = Freckle::Client.new(token: 'YOUR PERSONAL ACCESS TOKEN')

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