testrail_rspec 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/lib/testrail_export.rb +2 -2
- data/lib/testrail_rspec.rb +4 -0
- data/testrail_rspec.gemspec +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: caf3e56aa6b5f3282ca4782031502ac33f1a9a24
|
|
4
|
+
data.tar.gz: 30c176d341f33987bcf8dd745dee4541e62cf02c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 561a7ece1fe03c9f4d91125d6f071347cd27e81a2f20b773b5b76ae0561be5aae48aa35fd408526bea4cddfcb15bf8f8bdf90f07eb643bf127851a9b410cc5e1
|
|
7
|
+
data.tar.gz: ca1fe5af70bcbbf0df9cf204dfca1e625323533c3ad1498279751dfb6014979f8dc04f9ac92832d3cbedb20f3391606d1a418ae974c66283e116875548a44818
|
data/lib/testrail_export.rb
CHANGED
|
@@ -5,9 +5,9 @@ require 'rubytree'
|
|
|
5
5
|
|
|
6
6
|
require "testrail_export/client"
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
RSpec.configuration.add_setting :testrail_formatter_options, :default => {}
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
class TestrailExport < RSpec::Core::Formatters::BaseTextFormatter
|
|
11
11
|
|
|
12
12
|
RSpec::Core::Formatters.register self, :start, :close, :dump_summary
|
|
13
13
|
# # :example_started, :example_passed,
|
data/testrail_rspec.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: testrail_rspec
|
|
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
|
- Michal Kubik
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-10-
|
|
11
|
+
date: 2014-10-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -80,6 +80,7 @@ files:
|
|
|
80
80
|
- Rakefile
|
|
81
81
|
- lib/testrail_export.rb
|
|
82
82
|
- lib/testrail_export/client.rb
|
|
83
|
+
- lib/testrail_rspec.rb
|
|
83
84
|
- testrail_rspec.gemspec
|
|
84
85
|
homepage: https://github.com/mkubik8080/testrail_rspec
|
|
85
86
|
licenses:
|
|
@@ -101,7 +102,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
101
102
|
version: '0'
|
|
102
103
|
requirements: []
|
|
103
104
|
rubyforge_project:
|
|
104
|
-
rubygems_version: 2.4.
|
|
105
|
+
rubygems_version: 2.4.1
|
|
105
106
|
signing_key:
|
|
106
107
|
specification_version: 4
|
|
107
108
|
summary: RSpec exporter formatter - pushes test run results to TestRail instance.
|