zephyr_ruby 0.2.0 → 0.4.0

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: 6dc38cb194a642da739e1e3751088534adfe7d6dfb91e071711874b016ace40c
4
- data.tar.gz: aa6ff971eb179efa56c7c36b860b0080a63c4e012f04676ac90ea5859c810e70
3
+ metadata.gz: 55a66aab079225aab9ce400e88f67007c5f2eacdceaff6cecfbb3456c4f2f678
4
+ data.tar.gz: 4fb99ddb69c4c3225a5300dbf27e0d28331d1597c9b52d4ef05507f4db2747b9
5
5
  SHA512:
6
- metadata.gz: df318274d7222181131a607652947fcb65f3667286c3d5ff69498461173dc08f6271bb5a399752833df13787208f86596c7136173ec8e625732b67a551e9c83f
7
- data.tar.gz: 4fc68420bd7ce2be10a81ed1b0aaf3d767e42953f6308ce67fc12d345aa107a22b1f82285bcfd29eeee92d07e135984309de93a84ca2ecf071b7140babc88e8b
6
+ metadata.gz: 4a958eb629c36f117c3ad6b9fba8103a96719a6280242ae29ecc1fcc761e9c0d9379de2793920bfb2d56ffa91c3776b4d8b3773a61c48cfd36822186b51bbe3b
7
+ data.tar.gz: 5cba67d702ef5829fecc9a4a3ebb5adcc8eb7086dba2bddcc20b77690f961e646e0e62b67b359cb97452cd8752c71df870ce4cca04520a21a043e79de0e0ba22
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # ZephyrRuby
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/zephyr_ruby`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ [Zephyr REST API Documentation](https://support.smartbear.com/zephyr-scale-cloud/api-docs/#section/Introduction)
4
4
 
5
5
  ## Installation
6
6
 
@@ -20,13 +20,8 @@ This gem provides access to the Zephyr Scale REST API.
20
20
  require 'zephyr_ruby'
21
21
 
22
22
  @client = ZephyrRuby::Client.new('YOUR_API_KEY')
23
-
24
- puts @client.list_test_cases
25
23
  ```
26
24
 
27
- ## Links to Zephyr Scale REST API Documentation
28
- - [Overview](https://support.smartbear.com/zephyr-scale-cloud/api-docs/#section/Introduction)
29
-
30
25
  ## Development
31
26
 
32
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.
@@ -4,6 +4,7 @@ require_relative 'resource/automations'
4
4
  require_relative 'resource/environments'
5
5
  require_relative 'resource/folders'
6
6
  require_relative 'resource/healthcheck'
7
+ require_relative 'resource/issue_links'
7
8
  require_relative 'resource/links'
8
9
  require_relative 'resource/priorities'
9
10
  require_relative 'resource/projects'
@@ -24,6 +25,7 @@ module ZephyrRuby
24
25
  include ZephyrRuby::Client::Resource::Environments
25
26
  include ZephyrRuby::Client::Resource::Folders
26
27
  include ZephyrRuby::Client::Resource::HealthCheck
28
+ include ZephyrRuby::Client::Resource::IssueLinks
27
29
  include ZephyrRuby::Client::Resource::Links
28
30
  include ZephyrRuby::Client::Resource::Priorities
29
31
  include ZephyrRuby::Client::Resource::Projects
@@ -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.2.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.2.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-11-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