fastlane-plugin-bitrise_automation 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a2920ef1f7ece34d05ae43b3d408a8963e4126d873abca53047c18a55b95c807
4
- data.tar.gz: a2e79912cb5185fc06c598d5531dcd39d75dfd13b70509cb60998e5b7e786538
3
+ metadata.gz: 52d8e6af9f3d94409439d852326a6f3695bf4a5c79bc2ec1bb73697cb14f4bfb
4
+ data.tar.gz: a240c2baac03ac01441f88cd38d2939212d38e4c749ab177da22e3746b84ff76
5
5
  SHA512:
6
- metadata.gz: f48236f9d3108696182617d8c121d9f2a8792cd9d0cdb0064a6cf11b82e8744088afe2e877144dbbb4e4c43683dc0929c0c7ea385ed1ea77aca5df983ae2734a
7
- data.tar.gz: b212b101f05ef097886df817ff31e5faf30f118f9c5adf3a421b05292e06ef2c6743afde46ad89c771f14dfa426539d251b26aad5ad9e2803160c0a267a56276
6
+ metadata.gz: bfd962e3d6e904987bc0eda66f75bcb415a5f9995e16410837b9f243c9cef49955ac1851a716ecdd349d9d9273a62c68a212725153b969269fdd6e3e50c36116
7
+ data.tar.gz: 4ed1d1619b5ae73215de09258e8e0bf33e3f027bf6338426df82848f6673d28b777231ec2c5e67f5cb0db400f9895cf800082dc15879ea65445ea4225a73ea57
@@ -9,7 +9,7 @@ module Fastlane
9
9
  class << self
10
10
  def get(params, path)
11
11
  request = Net::HTTP::Get.new("/v0.1/apps/#{params[:app_slug]}/#{path}", bitrise_headers(params[:access_token]))
12
- bitrise_client.request(request)
12
+ request_with_retries(request)
13
13
  end
14
14
 
15
15
  def post(params, path, body)
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module BitriseAutomation
3
- VERSION = "0.4.0"
3
+ VERSION = "0.4.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-bitrise_automation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mario Cecchi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-16 00:00:00.000000000 Z
11
+ date: 2020-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry
@@ -147,7 +147,6 @@ files:
147
147
  - lib/fastlane/plugin/bitrise_automation.rb
148
148
  - lib/fastlane/plugin/bitrise_automation/actions/bitrise_build_artifacts_action.rb
149
149
  - lib/fastlane/plugin/bitrise_automation/actions/bitrise_build_status_action.rb
150
- - lib/fastlane/plugin/bitrise_automation/actions/interrupt_action.rb
151
150
  - lib/fastlane/plugin/bitrise_automation/actions/trigger_bitrise_workflow_action.rb
152
151
  - lib/fastlane/plugin/bitrise_automation/helper/bitrise_automation_helper.rb
153
152
  - lib/fastlane/plugin/bitrise_automation/version.rb
@@ -1,38 +0,0 @@
1
- require 'fastlane/action'
2
- require_relative '../helper/bitrise_automation_helper'
3
-
4
- module Fastlane
5
- module Actions
6
- class InterruptAction < Action
7
- def self.run(params)
8
- begin
9
- UI.message("Test interrupt - sleeping")
10
- sleep(60)
11
- rescue Interrupt => e
12
- UI.message("interrupted")
13
- end
14
- end
15
-
16
- def self.description
17
- "Trigger a Bitrise workflow with the specified parameters, synchronously or asynchronously"
18
- end
19
-
20
- def self.authors
21
- ["Mario Cecchi", "Henrique Alves"]
22
- end
23
-
24
- def self.return_value
25
- "Returns the information of the Bitrise build"
26
- end
27
-
28
- def self.available_options
29
- [
30
- ]
31
- end
32
-
33
- def self.is_supported?(platform)
34
- true
35
- end
36
- end
37
- end
38
- end