fastlane-plugin-stream_actions 0.3.35 → 0.3.37

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: 36d2e9394eba6e29801183387007acb61a941f6fa4c1f5c340e30f10b44c56de
4
- data.tar.gz: 5d0994b8fdcdc2a2b6614dc8dca0a3c4d20c77115dbbfd47838d958bd51def0b
3
+ metadata.gz: d2c51bd6585d2bb6ffd14e34348109460142ae45a97256601310807b88689bd3
4
+ data.tar.gz: c5caf7964185fde162a2586af5f459f14069fae309a272fb57bcde3249d38b57
5
5
  SHA512:
6
- metadata.gz: 3a408b1ef0525eff7d5d941cc9448c8e1e834d88c8fe58a3d8f0bef8f69eaa26eb97d57efc993135098ae269a94649321530b3d936a7d97d5298a16f517e9650
7
- data.tar.gz: ecb1afeca948b69ca3eb181b337d3fa737d88571bf37bc35b87187f4011fe4aa5068d9324ac3d876cc141caeb00ecee4851d950c8e5db67e6e6fd78d967bb8e8
6
+ metadata.gz: 8454d0d3288d2612ab78008c0aab87deb0609884741931732a11968afa8e9f7d6938b92f06e362a2e593182673f9d7d0486546e0b3f2a832b350e15e9e39c9fd
7
+ data.tar.gz: 861114c1acd0487e4573fcc39d0a44057f81b7bccf4f2fd040399cb8f6ad6dbfc8613ad32e3b3494ac77a2851bdb3a1578592b5935db39eb67f3d6192a75d144
@@ -2,7 +2,7 @@ module Fastlane
2
2
  module Actions
3
3
  class AllureApiAction < Action
4
4
  def self.run(params)
5
- url = URI("#{params[:url]}/api/rs/#{params[:path]}")
5
+ url = URI("#{params[:url]}/#{params[:path]}")
6
6
  request =
7
7
  case params[:http_method].upcase
8
8
  when 'GET'
@@ -30,7 +30,7 @@ module Fastlane
30
30
  launch_id = other_action.allure_api(
31
31
  url: params[:url],
32
32
  token: params[:token],
33
- path: '/launch',
33
+ path: 'launch',
34
34
  http_method: 'POST',
35
35
  request_body: body
36
36
  )['id']
@@ -7,7 +7,7 @@ module Fastlane
7
7
  testcase_id = other_action.allure_api(
8
8
  url: params[:url],
9
9
  token: params[:token],
10
- path: '/testcase',
10
+ path: 'testcase',
11
11
  http_method: 'POST',
12
12
  request_body: body
13
13
  )['id']
@@ -5,7 +5,7 @@ module Fastlane
5
5
  response = other_action.allure_api(
6
6
  url: params[:url],
7
7
  token: params[:token],
8
- path: "/testplan/?projectId=#{params[:project_id]}",
8
+ path: "testplan/?projectId=#{params[:project_id]}",
9
9
  http_method: 'GET'
10
10
  )
11
11
 
@@ -14,7 +14,7 @@ module Fastlane
14
14
  other_action.allure_api(
15
15
  url: params[:url],
16
16
  token: params[:token],
17
- path: "/testplan/#{testplan_id}/sync",
17
+ path: "testplan/#{testplan_id}/sync",
18
18
  http_method: 'POST'
19
19
  )
20
20
  UI.success("Testplan with id #{testplan_id} synced successfully 🎉")
@@ -27,7 +27,7 @@ module Fastlane
27
27
  other_action.allure_api(
28
28
  url: params[:url],
29
29
  token: params[:token],
30
- path: "/testplan/#{testplan_id}/run",
30
+ path: "testplan/#{testplan_id}/run",
31
31
  http_method: 'POST',
32
32
  request_body: body
33
33
  )
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module StreamActions
3
- VERSION = '0.3.35'
3
+ VERSION = '0.3.37'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-stream_actions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.35
4
+ version: 0.3.37
5
5
  platform: ruby
6
6
  authors:
7
7
  - GetStream
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-17 00:00:00.000000000 Z
11
+ date: 2024-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: xctest_list