fastlane-plugin-download_hocky_build 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: af05f7e3ca03e4b554926c97fa73c8ef0ec55fdc96734c4f72245d3b0da11d95
4
- data.tar.gz: 7516f078e9a60294fc9d745627ecbb51f9a2bab314979e3746dbd8f0bd73bb90
3
+ metadata.gz: 8f0d7cabf8cf4b73c8798add76d628fd27379623909865fd89a5df68769260f9
4
+ data.tar.gz: 4c386c8a33a2dd6b4e649313c00aa5f5edd279e40a0a4cc1dc847297540de273
5
5
  SHA512:
6
- metadata.gz: 9500484ae3446063172ea7766d8bcfd16a20fe7fd89c44d01bb486bc25f4eb01720014a875818e82cf21bcebc1961fa6b711f916735f635818a3b04e25b277e2
7
- data.tar.gz: '095cded1e2e065e63a2f8efa05c8c1ea39a6941294e7fe9feb088aeec766346322e80b89f0d706d5dc26cb615d8631889abd5ffa681899c83bd9cef708f3558b'
6
+ metadata.gz: a0cc5630749005da939b875c985a668f2a41649feb63304a29859e7a3ab143a6dfe6febe52f144af74ac1f5256f02a29e7bb63d09839379aec60be41a6e1a33b
7
+ data.tar.gz: f3a44456e0174abbe0b4659759778e3359b9bd43001c0315ecf5b2d644dbd436bce4bc306cd12ef23f219cc560e9400cfbb91a401d27bd9ef9b12c95f34427f1
data/README.md CHANGED
@@ -20,7 +20,16 @@ Download newest build from HockeyApp (iOS & Android)
20
20
 
21
21
  Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
22
22
 
23
- **Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
23
+ ```
24
+ download_hocky_build(
25
+ api_token: "abc1234defg", # API Token
26
+ app_id: "1234abcdefg", # App ID
27
+ output_directory: "~/Desktop", # Path to local build folder
28
+ output_file: "ios.ipa", # Downloaded build name *.ipa or *.apk
29
+ output_info_file: "BuildInfo.json" # json with details about downloaded build
30
+ )
31
+ ```
32
+
24
33
 
25
34
  ## Run tests for this plugin
26
35
 
@@ -1,3 +1,6 @@
1
+ #!/bin/env ruby
2
+ # encoding: utf-8
3
+
1
4
  require 'fastlane/action'
2
5
  require 'faraday'
3
6
  require 'faraday_middleware'
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module DownloadHockyBuild
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-download_hocky_build
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anton Morozov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-08 00:00:00.000000000 Z
11
+ date: 2019-04-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday