Project

ticksy_api

0.0
No commit activity in last 3 years
No release in over 3 years
A Ruby client for the Ticksy API https://ticksy.com/
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Ticksy API Client

A Ruby client for the Ticksy API

Installation

The Ticksy API client can be installed using Rubygems or Bundler.

Rubygems

gem install ticksy_api

Bundler

Add it to your Gemfile

gem 'ticksy_api', '~> 0.1.0'

Usage

require 'ticksy_api'

client = TicksyAPI::Client.new 'YOUR_DOMAIN', 'YOUR_API_KEY'

client.open_tickets.each do |ticket|
  ticket.comments.each do |comment|
    puts comment.comment
  end
end