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: f8fde563ea7964ed421a2cdafbdca72cf69727f1ff953d6cca70128f5f1b13a4
4
- data.tar.gz: ff58091fa45ce0176efe959dc3f56b54bfe1651675f078b7cd546d1b93c43739
3
+ metadata.gz: af05f7e3ca03e4b554926c97fa73c8ef0ec55fdc96734c4f72245d3b0da11d95
4
+ data.tar.gz: 7516f078e9a60294fc9d745627ecbb51f9a2bab314979e3746dbd8f0bd73bb90
5
5
  SHA512:
6
- metadata.gz: 1570a86417e1df593ca2c45d5cba197b50773fc72f7470ee06df5ea58388cc56af355d84d3ce92212bf56c72a48948ba3340814fd9c73dd4962b6c61886947b7
7
- data.tar.gz: 154619727902fa5820bce8e824a818e630fd278f322b8f275adb06d5b6b53b09a075ad92e36f9b255f6a107e7b81e3cb89ec4ae3aa3eaf64ae0231f76656068c
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
- Helps to download build from HockeyApp
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
- Faraday.new(:url => HOST_NAME) do |faraday|
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
- "Helps to download builds from HockeyApp (iOS and Android)"
118
+ "Download newest build from HockeyApp (iOS & Android)"
120
119
  end
121
120
 
122
121
  def self.authors
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module DownloadHockyBuild
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
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.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 builds from HockeyApp (iOS and Android)
201
+ summary: Download newest build from HockeyApp (iOS & Android)
202
202
  test_files: []