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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ecca57c0223b9bae03c9b4338e6a844a38de8a07
4
- data.tar.gz: db2f1f76f0e52296d6c73d4656a0578a7b98fd84
3
+ metadata.gz: caf3e56aa6b5f3282ca4782031502ac33f1a9a24
4
+ data.tar.gz: 30c176d341f33987bcf8dd745dee4541e62cf02c
5
5
  SHA512:
6
- metadata.gz: b004b3c593c4bc8d8431e001b68707e654d9306aa6a2ed063439ad17cfc5317363b9a8cb2f938a5ae29f9737655c770e43a1fe4f1ccd2463e03c984a838f3aa3
7
- data.tar.gz: 914821a0f45143abd5b5dc151644d03b01b7206c4f155e0c31e104da72d6e8e4bc48193fbb67e29f1d9314031adc176e5d6ddaad3da96b7d1191fd54502511da
6
+ metadata.gz: 561a7ece1fe03c9f4d91125d6f071347cd27e81a2f20b773b5b76ae0561be5aae48aa35fd408526bea4cddfcb15bf8f8bdf90f07eb643bf127851a9b410cc5e1
7
+ data.tar.gz: ca1fe5af70bcbbf0df9cf204dfca1e625323533c3ad1498279751dfb6014979f8dc04f9ac92832d3cbedb20f3391606d1a418ae974c66283e116875548a44818
@@ -5,9 +5,9 @@ require 'rubytree'
5
5
 
6
6
  require "testrail_export/client"
7
7
 
8
- class TestrailExport < RSpec::Core::Formatters::BaseTextFormatter
8
+ RSpec.configuration.add_setting :testrail_formatter_options, :default => {}
9
9
 
10
- RSpec.configuration.add_setting :testrail_formatter_options, :default => {}
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,
@@ -0,0 +1,4 @@
1
+ # this file is to make autorequire possible
2
+ # main class file is called testrail_export
3
+ # because of better nameing of --format TestrailExport
4
+ require 'testrail_export'
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "testrail_rspec"
7
7
 
8
- spec.version = '0.0.5'
8
+ spec.version = '0.0.6'
9
9
 
10
10
  spec.authors = ["Michal Kubik"]
11
11
  spec.email = ["michal.kubik@boost.no"]
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.5
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-13 00:00:00.000000000 Z
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.2
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.