Skip to content
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.

tapptic/hockeyapp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HockeyApp gem

This gem enables you to easily access the JSON Rest API of http://www.hockeyapp.net.

More info available on this API here : http://support.hockeyapp.net/kb/api

HOW-TO

1° Configure your connection :

HockeyApp::Config.configure do |config|
  config.token = "ABCDEF"
end

2° Make a client

client = HockeyApp.build_client

3° Use the client

apps = client.get_apps
versions = apps.first.versions
crashes = apps.first.crashes
....

4° Read the specs for more use cases

Releases

No releases published

Packages

No packages published

Languages