fastlane-plugin-download_hocky_build 0.1.1 → 0.1.2
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: af05f7e3ca03e4b554926c97fa73c8ef0ec55fdc96734c4f72245d3b0da11d95
|
4
|
+
data.tar.gz: 7516f078e9a60294fc9d745627ecbb51f9a2bab314979e3746dbd8f0bd73bb90
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9500484ae3446063172ea7766d8bcfd16a20fe7fd89c44d01bb486bc25f4eb01720014a875818e82cf21bcebc1961fa6b711f916735f635818a3b04e25b277e2
|
7
|
+
data.tar.gz: '095cded1e2e065e63a2f8efa05c8c1ea39a6941294e7fe9feb088aeec766346322e80b89f0d706d5dc26cb615d8631889abd5ffa681899c83bd9cef708f3558b'
|
data/README.md
CHANGED
@@ -12,7 +12,7 @@ fastlane add_plugin download_hocky_build
|
|
12
12
|
|
13
13
|
## About download_hocky_build
|
14
14
|
|
15
|
-
|
15
|
+
Download newest build from HockeyApp (iOS & Android)
|
16
16
|
|
17
17
|
**Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
|
18
18
|
|
@@ -8,11 +8,9 @@ require_relative '../helper/download_hocky_build_helper'
|
|
8
8
|
module Fastlane
|
9
9
|
module Actions
|
10
10
|
class DownloadHockyBuildAction < Action
|
11
|
-
HOST_NAME = 'https://rink.hockeyapp.net'
|
12
11
|
|
13
12
|
def self.run(params)
|
14
13
|
UI.message("The download_hocky_build plugin is working!")
|
15
|
-
|
16
14
|
api_token = params[:api_token]
|
17
15
|
app_id = params[:app_id]
|
18
16
|
output_directory = params[:output_directory]
|
@@ -24,7 +22,8 @@ module Fastlane
|
|
24
22
|
|
25
23
|
|
26
24
|
def self.connection(api_token)
|
27
|
-
|
25
|
+
host_url = 'https://rink.hockeyapp.net'
|
26
|
+
Faraday.new(:url => host_url) do |faraday|
|
28
27
|
faraday.request :multipart
|
29
28
|
faraday.request :url_encoded
|
30
29
|
faraday.adapter Faraday.default_adapter
|
@@ -116,7 +115,7 @@ module Fastlane
|
|
116
115
|
|
117
116
|
|
118
117
|
def self.description
|
119
|
-
"
|
118
|
+
"Download newest build from HockeyApp (iOS & Android)"
|
120
119
|
end
|
121
120
|
|
122
121
|
def self.authors
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Anton Morozov
|
@@ -198,5 +198,5 @@ requirements: []
|
|
198
198
|
rubygems_version: 3.0.2
|
199
199
|
signing_key:
|
200
200
|
specification_version: 4
|
201
|
-
summary: Download
|
201
|
+
summary: Download newest build from HockeyApp (iOS & Android)
|
202
202
|
test_files: []
|