zephyr_ruby 0.5.0 → 0.5.1

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: 549801e2026e853cf735c9d2cef973e9ca2059fe3b4733851854ef8cb9424862
4
- data.tar.gz: 2afe0ae17007648df1b3d1005476b02dd102fd6456d5b39e5f80941f4891e782
3
+ metadata.gz: 9a3b3bab61cc2f4029d887a6b628e0efba253fa675fed3bee61d4fbdb8b68911
4
+ data.tar.gz: 6718dd0d341673673b00ac9c0089eef7f2eecdd13202250b21d52d4115827b3a
5
5
  SHA512:
6
- metadata.gz: f79bee54080bdba9bcd91a99cdc822e41f0298ab4fccc4ba4c5e0256ad37de42a44487366f053a5b6262b0d19dca4af5f5b871c3e9628621c1bfe08c80f830a5
7
- data.tar.gz: 0ce25005380c567adaa173be75f637262275b00a3eeb65f0226eb6f4c08fe315ffca0794af69d7a5dcd159dea86f3eaf442f955b4656a17b043cdf31dae49c0d
6
+ metadata.gz: 0a0a806a2d95fa89f4cb074dbbc1bdfd12e0c7f04eb83f0f5a36734d084f62f427000e6513da7775653be66c395872aa5a689371062040d17a0b3e67892da83d
7
+ data.tar.gz: e6335fd4cb30b53b0be7fea62c08211392b7d9c6a8afec71fbba80106a987861faad286a2f6510df72e0d0d9ad3e07c8f2601179ed8e2618c943fb37f5e4dd69
@@ -5,16 +5,16 @@ module ZephyrRuby
5
5
  module Resource
6
6
  # Operations related to Automations
7
7
  module Automations
8
- def create_automation_custom(body)
9
- post '/automations/executions/custom', body
8
+ def create_automation_custom(body, file_path = nil)
9
+ post '/automations/executions/custom', body, file_path
10
10
  end
11
11
 
12
- def create_automation_cucumber(body)
13
- post '/automations/executions/cucumber', body
12
+ def create_automation_cucumber(body, file_path = nil)
13
+ post '/automations/executions/cucumber', body, file_path
14
14
  end
15
15
 
16
- def create_automation_junit(body)
17
- post '/automations/executions/junit', body
16
+ def create_automation_junit(body, file_path = nil)
17
+ post '/automations/executions/junit', body, file_path
18
18
  end
19
19
 
20
20
  def get_zip_file(params = {})
@@ -41,10 +41,6 @@ module ZephyrRuby
41
41
  post "/testexecutions/#{test_execution_id}/teststeps/sync"
42
42
  end
43
43
 
44
- def get_test_execution_links(test_execution_id)
45
- get "/testexecutions/#{test_execution_id}/links"
46
- end
47
-
48
44
  def create_test_execution_issue_link(test_execution_id, body)
49
45
  post "/testexecutions/#{test_execution_id}/links/issues", body
50
46
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ZephyrRuby
4
- VERSION = '0.5.0'
4
+ VERSION = '0.5.1'
5
5
  end
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zephyr_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Davis
@@ -101,6 +101,7 @@ files:
101
101
  - lib/zephyr_ruby/version.rb
102
102
  - sig/zephyr_ruby.rbs
103
103
  - zephyr_ruby-0.4.0.gem
104
+ - zephyr_ruby-0.5.0.gem
104
105
  homepage: https://github.com/cdavis-personal/zephyr_ruby
105
106
  licenses:
106
107
  - MIT