npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

grunt-hockeyapp-puck

v0.4.0

Published

Interface to HockeyApp for grunt

Downloads

7

Readme

grunt-hockeyapp-puck

Interface to HockeyApp RESTful API for grunt

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-hockeyapp-puck --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-hockeyapp-puck');

Upgrading from 0.3.x

Task names have changed to align them better with the API.

  • hockeyapp_listapps -> puck_app_list
  • hockeyapp_create -> puck_app_new
    • check puck_app_id instead of ha_app_id
  • hockeyapp_addteam -> puck_team_add
  • hockeyapp_listteams -> puck_team_list
    • check puck_teams instead of ha_teams
  • hockeyapp_upload -> puck_version_upload
    • instead of file use ipa

API Token

This plugin requires an API token to communicate with the RESTful API. See API: Basics and Authentication for more details.

Caveats

This is not a complete implementation of the API, although the intention is to fill this out as time allows. Currently you can create an app ID, add an app to team and upload a new version of your app.

Also, this is a pain to test as to be able to upload builds you need a developer account and that costs money :$

The "puck_app_list" task

Get list of apps for your token.

See this link for more details.

Overview

grunt.initConfig({
  puck_app_list {
    your_target: {
      options:{
        token: null,
      }
    },
  }
});

Options

options.token (required)

Type: String Default value: null

The authentication token.

Result

grunt.config('puck_apps'); // contains list of apps

The "puck_app_new" task

Create a new app id. If successful, this sets puck_app_id in the grunt config to the new app id.

See this link for more details.

Overview

grunt.initConfig({
  puck_app_new {
    your_target: {
      options:{
        token: null,
        title: null,
        bundle_identifier: null,
        platform: 'iOS', //Android, Mac OS, Windows Phone, Custom
        release_type: '0',
        custom_release_type: null,
        icon:null,
        private: 'true'
      }
    },
  }
});

Options

options.token (required)

Type: String Default value: null

The authentication token.

options.title (required)

Type: String Default value: null

The apps name.

options.bundle_identifier (required)

Type: String Default value: null

The bundle identifier on iOS or Mac OS X, the package name on Android, or the namespace on Windows Phone.

options.platform

Type: String Default value: iOS

App platform, valid values are iOS, Android, Mac OS, Windows Phone or Custom.

options.release_type

Type: String Default value: 0

Set release type of the app, valid values are 0 for beta, 1 for store, 2 for alpha and 3 for enterprise.

options.custom_release_type

Type: String Default value:

Set to the custom release type.

options.icon

Type: String Default value: null

Optional icon file with content type image/png, image/jpeg, or image image/gif

options.private

Type: String Default value: false

Set to true to enable the private download page.

Usage Examples

grunt.initConfig({
  puck_app_new {
    iOS: {
      options:{
        token: '1234567890',
        title: 'New App',
        bundle_identifier: 'com.newbiz.NewApp',
        platform: 'iOS', 
        release_type: '0'
      }
    },
  }
});

grunt.config('puck_app_id'); // contains new app id

The "puck_team_add" task

Add a team to an app.

See this link for more details.

Overview

grunt.initConfig({
  puck_team_add {
    your_target: {
      options:{
        token: null,
        app_id: null,
        team_id: null
      }
    },
  }
});

Options

options.token (required)

Type: String Default value: null

The authentication token.

options.app_id (required)

Type: String Default value: null

The apps identifier.

options.title (required)

Type: String Default value: null

The team identifier you want to add the app to.

Usage Examples

grunt.initConfig({
  puck_team_add {
    iOS: {
      options:{
        token: '1234567890',
        app_id: '0987654321',
        team_id: '762'
      }
    }
  }
});

The "puck_version_upload" task

Upload an app (.ipa, .apk or .zip).

See this link for more details.

NB: use puck_app_new to get the app_id first before calling this task if you do not have one already.

Overview

grunt.initConfig({
  puck_version_upload {
    your_target: {
      options:{
        token: null,
        app_id: null,
        ipa null,
        notes: 'Changelog',
        notes_type: 1
        notify: 2,
        status: 2,
        tags: '',
        teams: null
      }
    }
  }
});

Options

options.token (required)

Type: String Default value: null

The authentication token.

options.app_id (required)

Type: String Default value: null

The apps identifier.

options.file (required)

Type: String Default value: null

File data of the .ipa for iOS, .app.zip for OS X, or .apk file for Android.

options.notes

Type: String Default value: 'Changelog'

Change log in either Markdown or Textile format.

options.notes_type

Type: Number Default value: '1'

Type of change log, 0 for Textile, 1 for Markdown.

options.notify

Type: Number Default value: 2

Notify testers, 0 do not notify, 1 notify testers who can install this app or 2 notify all testers.

options.status

Type: Number Default value: 2

Download status of app, 1 do not allow download, 2 allow download.

options.tags

Type: String Default value: ''

Restrict download to CSV list of tags.

options.teams

Type: String Default value: null

Restrict download to CSV list of team IDs.

Usage Examples

grunt.initConfig({
  puck_version_upload {
    iOS: {
      options:{
        token: '1234567890',
        app_id: '0987654321',
        file: <file data>,
        notes:'fixed bugs',
        teams:'22,33'
      }
    }
  }
});

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.