1.0.5 • Published 8 years ago

grunt-testfairy-upload v1.0.5

Weekly downloads
18
License
-
Repository
-
Last release
8 years ago

Grunt TestFairy Upload

Upload an APK or IPA file to Test Fairy, with your grunt build script. This is useful for Cordova or PhoneGap hybrid apps.

Example Gruntfile.js Configuration

    module.exports = function (grunt) {
      // load the grunt plugin
      require('grunt-testfairy-upload')(grunt);

      // configure the grunt plugin
      grunt.initConfig({
        'testfairyUpload': {
          staging: {
           apiKey: 'XYZ123',
           artifactPath: 'platforms/ios/build/staging/MyApp.ipa',
           comment: 'Uploaded on: ' + (new Date())
          },
          testing: {
           apiKey: 'ABC123',
           artifactPath: 'platforms/ios/build/testing/MyApp.ipa',
           comment: 'Uploaded on: ' + (new Date())
          }
        }
      });

    };
1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago