/freckles

Ruby client for Version 2 of the Freckle API

Primary LanguageRubyMIT LicenseMIT

freckles

Gem Version Build Status

Ruby client for Version 2 of the Freckle 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