zephyr_ruby 0.3.0 → 0.4.0

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: 8f7a9f6f87f9381df9f8553af5bfa76989f11a314940de8c56d4af18be21a1b1
4
- data.tar.gz: 264147893390f27bea28befb18b3bec1df7300862dd3901791e402adbdaea3f9
3
+ metadata.gz: 55a66aab079225aab9ce400e88f67007c5f2eacdceaff6cecfbb3456c4f2f678
4
+ data.tar.gz: 4fb99ddb69c4c3225a5300dbf27e0d28331d1597c9b52d4ef05507f4db2747b9
5
5
  SHA512:
6
- metadata.gz: 4fb2abff6e2bfd923d256ef714542a14b4e7465c9837b64b58320eefc24ff1325cd811f5d8ce8449111ba5ae92847e76fcc15bbf3823f708f0911c973479e6d4
7
- data.tar.gz: 631e49ef125f097ef38aad283ce862fea5b4d341561d6a5fe62895ee7aa10d35fa2ee5e5ab5333faeaa8076fd6ba373d43e04e9f987a3a098ea08aedd491573e
6
+ metadata.gz: 4a958eb629c36f117c3ad6b9fba8103a96719a6280242ae29ecc1fcc761e9c0d9379de2793920bfb2d56ffa91c3776b4d8b3773a61c48cfd36822186b51bbe3b
7
+ data.tar.gz: 5cba67d702ef5829fecc9a4a3ebb5adcc8eb7086dba2bddcc20b77690f961e646e0e62b67b359cb97452cd8752c71df870ce4cca04520a21a043e79de0e0ba22
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # ZephyrRuby
2
2
 
3
+ [Zephyr REST API Documentation](https://support.smartbear.com/zephyr-scale-cloud/api-docs/#section/Introduction)
4
+
3
5
  ## Installation
4
6
 
5
7
  Install the gem and add to the application's Gemfile by executing:
@@ -20,9 +22,6 @@ require 'zephyr_ruby'
20
22
  @client = ZephyrRuby::Client.new('YOUR_API_KEY')
21
23
  ```
22
24
 
23
- ## Zephyr Scale REST API Documentation
24
- - [Overview](https://support.smartbear.com/zephyr-scale-cloud/api-docs/#section/Introduction)
25
-
26
25
  ## Development
27
26
 
28
27
  After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -24,6 +24,10 @@ module ZephyrRuby
24
24
  def create_test_execution_link(test_execution_id, body)
25
25
  post "/testexecutions/#{test_execution_id}/links/issues", body
26
26
  end
27
+
28
+ def update_test_execution(test_execution_id, body)
29
+ put "/testexecutions/#{test_execution_id}", body
30
+ end
27
31
  end
28
32
  end
29
33
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ZephyrRuby
4
- VERSION = '0.3.0'
4
+ VERSION = '0.4.0'
5
5
  end
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zephyr_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Davis
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-12-26 00:00:00.000000000 Z
11
+ date: 2024-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -99,6 +99,7 @@ files:
99
99
  - lib/zephyr_ruby/resource/test_plans.rb
100
100
  - lib/zephyr_ruby/version.rb
101
101
  - sig/zephyr_ruby.rbs
102
+ - zephyr_ruby-0.3.0.gem
102
103
  homepage: https://github.com/chrisdavis180/zephyr_ruby
103
104
  licenses:
104
105
  - MIT
@@ -118,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
118
119
  - !ruby/object:Gem::Version
119
120
  version: '0'
120
121
  requirements: []
121
- rubygems_version: 3.2.33
122
+ rubygems_version: 3.2.3
122
123
  signing_key:
123
124
  specification_version: 4
124
125
  summary: Zephyr REST API Client for Ruby