testrail-ruby 0.0.5 → 0.0.6
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/README.md +4 -0
- data/lib/version.rb +1 -1
- data/spec/spec_helper.rb +4 -1
- data/spec/testrail/ruby_spec.rb +2 -5
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f9caa436fc854b728843bb5107274faaef88e58
|
4
|
+
data.tar.gz: a62138f2434efeab86cb75e7a06ca5c9c477f54d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 72ed42abf0f6a12ba8fb984e65211e17774c10d33308fd1e3ac3321b7bc37fd0d033c8bba830b33720d0de914a713f181750d24e508dcbb4014070482a4430f8
|
7
|
+
data.tar.gz: 527363bb473a7059fad7e72e301ab2e0c56a0bc734c847ac46c7ad8d93cc7f7cf508188f5768ba6e230377ed38e6c9b9d56cb5f42bf5ba4c2949bd9a1e2e048a
|
data/README.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
# testrail-ruby
|
2
2
|
Ruby bindings and idiomatic interface for testrail v2 API
|
3
3
|
|
4
|
+
[](https://gitlab.com/RubyToolbox/testrail-ruby/commits/master)
|
5
|
+
|
6
|
+
[](https://gitlab.com/RubyToolbox/testrail-ruby/commits/master)
|
7
|
+
|
4
8
|
## Installation
|
5
9
|
|
6
10
|
Add this line to your application's Gemfile:
|
data/lib/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
@@ -1,5 +1,8 @@
|
|
1
|
+
require 'simplecov'
|
2
|
+
SimpleCov.start # Do not move. Must load before code under test.
|
3
|
+
require 'rspec'
|
1
4
|
require 'bundler/setup'
|
2
|
-
require 'testrail
|
5
|
+
require 'testrail-ruby'
|
3
6
|
|
4
7
|
RSpec.configure do |config|
|
5
8
|
# Enable flags like --only-failures and --next-failure
|
data/spec/testrail/ruby_spec.rb
CHANGED
@@ -1,11 +1,8 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
RSpec.describe Testrail
|
3
|
+
RSpec.describe Testrail do
|
4
4
|
it 'has a version number' do
|
5
|
-
expect(Testrail::
|
5
|
+
expect(Testrail::VERSION).not_to be nil
|
6
6
|
end
|
7
7
|
|
8
|
-
it 'does something useful' do
|
9
|
-
expect(false).to eq(true)
|
10
|
-
end
|
11
8
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: testrail-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Frances Morales
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-06-
|
11
|
+
date: 2017-06-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: simplecov
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
69
83
|
description: A Ruby client wrapper for the TestRail API (v2)
|
70
84
|
email: fmorales@francesmoralespec.com
|
71
85
|
executables: []
|