Ruby client for Version 2 of the Freckle/Noko API.
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
require 'freckle'
freckle = Freckle::Client.new(token: 'YOUR PERSONAL ACCESS TOKEN')
freckle.get_projects.each do |project|
puts project.name
end