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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 77c13405999f08de5fd9fdf3cd49ea2e407a0b95
4
- data.tar.gz: 61fe0d1fb79b47dcd101ecfb42c1e1dbd468a8ce
3
+ metadata.gz: 2f9caa436fc854b728843bb5107274faaef88e58
4
+ data.tar.gz: a62138f2434efeab86cb75e7a06ca5c9c477f54d
5
5
  SHA512:
6
- metadata.gz: 36532c42019ab44ddfc9aa41fc435d0793ddc69ab9f136cab69bf3bbeca2b02e415b3bbad51d7d6670b2cff4ef7afb595cd9c946d621e3853439ddc3e8087803
7
- data.tar.gz: 345c26df22c39be6d1b644a3b01d42aec7267df71129c0f777f7bd60b6f574041170cd88ab6dbb4ec9be5c346e4ff3786f53928ce32aa76b2797466b36bfcb89
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
+ [![build status](https://gitlab.com/RubyToolbox/testrail-ruby/badges/master/build.svg)](https://gitlab.com/RubyToolbox/testrail-ruby/commits/master)
5
+
6
+ [![coverage report](https://gitlab.com/RubyToolbox/testrail-ruby/badges/master/coverage.svg)](https://gitlab.com/RubyToolbox/testrail-ruby/commits/master)
7
+
4
8
  ## Installation
5
9
 
6
10
  Add this line to your application's Gemfile:
@@ -1,3 +1,3 @@
1
1
  module Testrail
2
- VERSION = '0.0.5'.freeze
2
+ VERSION = '0.0.6'.freeze
3
3
  end
@@ -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/ruby'
5
+ require 'testrail-ruby'
3
6
 
4
7
  RSpec.configure do |config|
5
8
  # Enable flags like --only-failures and --next-failure
@@ -1,11 +1,8 @@
1
1
  require 'spec_helper'
2
2
 
3
- RSpec.describe Testrail::Ruby do
3
+ RSpec.describe Testrail do
4
4
  it 'has a version number' do
5
- expect(Testrail::Ruby::VERSION).not_to be nil
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.5
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-08 00:00:00.000000000 Z
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: []