testrail_helper 0.0.8 → 0.0.9
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 +4 -4
- data/Gemfile +0 -1
- data/Gemfile.lock +17 -7
- data/README.md +3 -0
- data/lib/testrail_helper.rb +6 -1
- data/lib/testrail_helper/version.rb +1 -1
- data/test.rb +2 -1
- data/testrail_helper.gemspec +1 -1
- metadata +3 -6
- data/testrail_helper-0.0.5.gem +0 -0
- data/testrail_helper-0.0.6.gem +0 -0
- data/testrail_helper-0.0.7.gem +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d6e3a4ffd25adb1d86303d1df5b9ed0fccd47d73
|
|
4
|
+
data.tar.gz: a664ec8f0a9d1e7690524b88c1eea529b89a886f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d3ec9983669a52789b75fc404e86e6372bd133d6f1e3a72c14fcea4ffd85d50710f4ce46332d18911837c389b9fb6e988675052be45325d23db25a2a48754c9f
|
|
7
|
+
data.tar.gz: ba2a390a59a35812b433d4182ffd78ef45e34bb1353e4537b6fe631b7e1e08a1c0bf8830c6be6b528778416880bed2f9ef5bba714528e0b830d84fc1495094f3
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,16 +1,27 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
testrail_helper (0.0.
|
|
4
|
+
testrail_helper (0.0.9)
|
|
5
5
|
json
|
|
6
|
-
|
|
6
|
+
testrail
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
activesupport (3.2.22)
|
|
12
|
+
i18n (~> 0.6, >= 0.6.4)
|
|
13
|
+
multi_json (~> 1.0)
|
|
14
|
+
httparty (0.11.0)
|
|
15
|
+
multi_json (~> 1.0)
|
|
16
|
+
multi_xml (>= 0.5.2)
|
|
17
|
+
i18n (0.7.0)
|
|
18
|
+
json (1.8.3)
|
|
19
|
+
multi_json (1.11.2)
|
|
20
|
+
multi_xml (0.5.5)
|
|
21
|
+
rake (10.4.2)
|
|
22
|
+
testrail (0.0.3)
|
|
23
|
+
activesupport (~> 3.1)
|
|
24
|
+
httparty (~> 0.11.0)
|
|
14
25
|
|
|
15
26
|
PLATFORMS
|
|
16
27
|
ruby
|
|
@@ -18,8 +29,7 @@ PLATFORMS
|
|
|
18
29
|
DEPENDENCIES
|
|
19
30
|
bundler (~> 1.10)
|
|
20
31
|
rake (~> 10.0)
|
|
21
|
-
testrail_client
|
|
22
32
|
testrail_helper!
|
|
23
33
|
|
|
24
34
|
BUNDLED WITH
|
|
25
|
-
1.
|
|
35
|
+
1.10.5
|
data/README.md
CHANGED
data/lib/testrail_helper.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
require '
|
|
1
|
+
require 'testrail'
|
|
2
2
|
require 'json'
|
|
3
3
|
|
|
4
4
|
require File.expand_path(File.dirname(__FILE__) + '/testrail_api')
|
|
@@ -140,5 +140,10 @@ module TestrailHelper
|
|
|
140
140
|
uri = "get_results_for_run/#{run_id}"
|
|
141
141
|
@client.send_get(uri)
|
|
142
142
|
end
|
|
143
|
+
|
|
144
|
+
def get_sections(project_id, suite_id)
|
|
145
|
+
uri = "get_sections/#{project_id}&suite_id=#{suite_id}"
|
|
146
|
+
@client.send_get(uri)
|
|
147
|
+
end
|
|
143
148
|
end
|
|
144
149
|
end
|
data/test.rb
CHANGED
data/testrail_helper.gemspec
CHANGED
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
spec.require_paths = ["lib"]
|
|
20
20
|
|
|
21
21
|
spec.add_dependency 'json'
|
|
22
|
-
spec.add_dependency '
|
|
22
|
+
spec.add_dependency 'testrail'
|
|
23
23
|
|
|
24
24
|
spec.add_development_dependency "bundler", "~> 1.10"
|
|
25
25
|
spec.add_development_dependency "rake", "~> 10.0"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: testrail_helper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- kinezu
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-01-
|
|
11
|
+
date: 2018-01-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|
|
@@ -25,7 +25,7 @@ dependencies:
|
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
|
-
name:
|
|
28
|
+
name: testrail
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - ">="
|
|
@@ -83,9 +83,6 @@ files:
|
|
|
83
83
|
- lib/testrail_helper.rb
|
|
84
84
|
- lib/testrail_helper/version.rb
|
|
85
85
|
- test.rb
|
|
86
|
-
- testrail_helper-0.0.5.gem
|
|
87
|
-
- testrail_helper-0.0.6.gem
|
|
88
|
-
- testrail_helper-0.0.7.gem
|
|
89
86
|
- testrail_helper.gemspec
|
|
90
87
|
homepage: https://github.com/kinezu/testrail_helper
|
|
91
88
|
licenses:
|
data/testrail_helper-0.0.5.gem
DELETED
|
Binary file
|
data/testrail_helper-0.0.6.gem
DELETED
|
Binary file
|
data/testrail_helper-0.0.7.gem
DELETED
|
Binary file
|