🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

hockeyapp

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hockeyapp

bundlerRubygems
Version
0.0.15
Version published
Maintainers
2
Created
Source

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

Usage

Configure your connection

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

Make a client

client = HockeyApp.build_client

Use the client

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

Documentation

Uploading a new version

@client ||= HockeyApp.build_client

app = HockeyApp::App.new(@client)
app.public_identifier = "aklsdjklajsd"
version = HockeyApp::Version.new(app, @client)
version.ipa = File.new('./app.ipa', 'r')
version.dsym = File.new('./dsym.dSYM.zip', 'r')
version = @client.post_new_version version

FAQs

Package last updated on 30 Apr 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts