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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f0d7cabf8cf4b73c8798add76d628fd27379623909865fd89a5df68769260f9
|
4
|
+
data.tar.gz: 4c386c8a33a2dd6b4e649313c00aa5f5edd279e40a0a4cc1dc847297540de273
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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
|
|
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.
|
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-
|
11
|
+
date: 2019-04-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|