testrail_helper 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -0
- data/Gemfile.lock +7 -17
- data/lib/testrail_helper.rb +1 -1
- data/lib/testrail_helper/version.rb +1 -1
- 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
- data/testrail_helper.gemspec +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed5ee7fbe8d32f8035ce897df9ac0d42e8833bd7
|
4
|
+
data.tar.gz: 8c0c6efde06139bbb04e22966a18f7fb0c914a2d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44d9811afe54dd21959ce1ece6f05dac77bd9f63605a584ce67c091b348db0c359ed48683f7c9efcc8d5996b3851ce19e60fdb6e3096ba80c4398e5465a74663
|
7
|
+
data.tar.gz: 62fc2ea2d18daaa29631e62d7c7c4c78b6b170c7a2c21ff4188e656aab85a3bd417c180f6a1f7441c45872beb50cf525b1e14b8d463c74afaeda51f7b5e5b21f
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,27 +1,16 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
testrail_helper (0.0.
|
4
|
+
testrail_helper (0.0.8)
|
5
5
|
json
|
6
|
-
|
6
|
+
testrail_client
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
|
12
|
-
|
13
|
-
|
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)
|
11
|
+
json (2.1.0)
|
12
|
+
rake (10.5.0)
|
13
|
+
testrail_client (0.0.1)
|
25
14
|
|
26
15
|
PLATFORMS
|
27
16
|
ruby
|
@@ -29,7 +18,8 @@ PLATFORMS
|
|
29
18
|
DEPENDENCIES
|
30
19
|
bundler (~> 1.10)
|
31
20
|
rake (~> 10.0)
|
21
|
+
testrail_client
|
32
22
|
testrail_helper!
|
33
23
|
|
34
24
|
BUNDLED WITH
|
35
|
-
1.
|
25
|
+
1.16.0.pre.3
|
data/lib/testrail_helper.rb
CHANGED
Binary file
|
Binary file
|
Binary file
|
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_client'
|
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.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- kinezu
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-01-02 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_client
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
@@ -83,6 +83,9 @@ 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
|
86
89
|
- testrail_helper.gemspec
|
87
90
|
homepage: https://github.com/kinezu/testrail_helper
|
88
91
|
licenses:
|