minitest-reporters-json_reporter 0.9.1 → 0.9.5
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/.travis.yml +7 -1
- data/Announcement.txt +2 -2
- data/CONTRIBUTING.md +22 -0
- data/Gemfile +5 -0
- data/README.md +9 -6
- data/Rakefile +2 -0
- data/lib/minitest/reporters/json_reporter/version.rb +1 -1
- data/minitest-reporters-json_reporter.gemspec +5 -6
- data/old.travis.yml +10 -0
- metadata +12 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 637cb5c4cf030085c3cf5ea997be1ebb130de915
|
4
|
+
data.tar.gz: 4aab5a9632c88573f94b1a8daf1cd3388e667662
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2da26b20f88627614a9a142ba19cc8a2a45844342d6c1bdfef840c27bdfd0ff29a81ca0aaa5572c6ac5e0d7cf73e5c7f826ffcd07b2c2bf097f2e2b566029096
|
7
|
+
data.tar.gz: 7700f3b089c870d03f72e4c5891789bf00f5ea8f551a5fd1794075287e6796b1be4178743ccd95401b760190ea6adf7a113ecccfc04d8d6f31d0696450509307
|
data/.travis.yml
CHANGED
data/Announcement.txt
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
minitest-reporters-json_reporter version 0.9.
|
1
|
+
minitest-reporters-json_reporter version 0.9.5 has been released.
|
2
2
|
|
3
3
|
Home, Code: https://github.com/edhowland/minitest-reporters-json_reporter
|
4
4
|
Bugs: https://github.com/edhowland/minitest-reporters-json_reporter/issues
|
5
|
-
Docs:http://www.rubydoc.info/gems/minitest-reporters-json_reporter/0.9.
|
5
|
+
Docs:http://www.rubydoc.info/gems/minitest-reporters-json_reporter/0.9.5
|
6
6
|
|
7
7
|
minitest-reporters-json_reporter is an extension to the Ruby minitest-reporters gem that provides JSON output from your Minitest or MiniSpec test run.
|
8
8
|
This version is the beta/release candidate before the official 1.0 version.
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
# CONTRIBUTING.md
|
2
|
+
|
3
|
+
|
4
|
+
## First: Thanks for Contributing!
|
5
|
+
|
6
|
+
|
7
|
+
### Source of this document.
|
8
|
+
|
9
|
+
This document borrows heavily from the CONTRIBUTING.md for the Atom editor on GitHub.com Source: [https://github.com/atom/atom/blob/master/CONTRIBUTING.md](https://github.com/atom/atom/blob/master/CONTRIBUTING.md)
|
10
|
+
|
11
|
+
[Where should I begin?](#Where-should-I-begin?)
|
12
|
+
|
13
|
+
|
14
|
+
## Where should I begin?
|
15
|
+
|
16
|
+
### Code of Conduct
|
17
|
+
|
18
|
+
|
19
|
+
Please read the [Code of Conduct](CODE_OF_CONDUCT). before proceeding.
|
20
|
+
|
21
|
+
|
22
|
+
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -3,6 +3,9 @@
|
|
3
3
|
This is an extension gem for the minitest-reporters gem. It adds JSON output as an output format.
|
4
4
|
|
5
5
|
[][gem]
|
6
|
+
[](https://travis-ci.org/edhowland/minitest-reporters-json_reporter)
|
7
|
+
|
8
|
+
|
6
9
|
|
7
10
|
## Abstract
|
8
11
|
|
@@ -11,7 +14,7 @@ example interface might be to the Atom editor: [https://atom.io](https://atom.io
|
|
11
14
|
I originally wrote this gem to interface to the Viper audible code editor for the blind community. See: [https://github.com/edhowland/viper](https://github.com/edhowland/viper)
|
12
15
|
Using this gem with Viper also requires the 'viper_ruby' package. See [https://github.com/edhowland/viper_ruby](https://github.com/edhowland/viper_ruby)
|
13
16
|
|
14
|
-
## Version 0.9.
|
17
|
+
## Version 0.9.5
|
15
18
|
|
16
19
|
## Installation
|
17
20
|
|
@@ -114,7 +117,7 @@ $ ruby report_spec.rb | jq .
|
|
114
117
|
"status": { "code": "Failed", "color": "red" },
|
115
118
|
"metadata": {
|
116
119
|
"generated_by": "Minitest::Reporters::JsonReporter",
|
117
|
-
"version": "0.9.
|
120
|
+
"version": "0.9.5",
|
118
121
|
"ruby_version": "2.2.2",
|
119
122
|
"ruby_patchlevel": 95,
|
120
123
|
"ruby_platform": "x86_64-linux",
|
@@ -216,10 +219,10 @@ Note: Extra credit if git flow feature branching was used.
|
|
216
219
|
|
217
220
|
## Resources
|
218
221
|
|
219
|
-
* Code: [https
|
220
|
-
* Bugs: https://github.com/edhowland/minitest-reporters-json_reporter/issues
|
221
|
-
*
|
222
|
-
*
|
222
|
+
* Code: [https://github.com/edhowland/minitest-reporters-json_reporter](https://github.com/edhowland/minitest-reporters-json_reporter)
|
223
|
+
* Bugs: [https://github.com/edhowland/minitest-reporters-json_reporter/issues](https://github.com/edhowland/minitest-reporters-json_reporter/issues)
|
224
|
+
* Docs: [http://www.rubydoc.info/gems/minitest-reporters-json_reporter/0.9.5](http://www.rubydoc.info/gems/minitest-reporters-json_reporter/0.9.5)
|
225
|
+
* Gem: [https://rubygems.org/gems/minitest-reporters-json_reporter](https://rubygems.org/gems/minitest-reporters-json_reporter)
|
223
226
|
|
224
227
|
###### Feedback
|
225
228
|
|
data/Rakefile
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
# coding: utf-8
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require 'minitest/reporters'
|
5
4
|
|
6
|
-
require 'minitest/reporters/json_reporter/version'
|
7
5
|
|
6
|
+
# Must hard code the exact version number because of circular dependency
|
8
7
|
Gem::Specification.new do |spec|
|
9
8
|
spec.name = 'minitest-reporters-json_reporter'
|
10
|
-
spec.version =
|
9
|
+
spec.version = '0.9.5'
|
11
10
|
spec.authors = ['edhowland']
|
12
11
|
spec.email = ['ed.howland@gmail.com']
|
13
12
|
|
@@ -22,9 +21,9 @@ See: https://atom.io. Originally written to interface with the Viper Audible edi
|
|
22
21
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
22
|
spec.require_paths = ['lib']
|
24
23
|
spec.required_ruby_version = '~> 2.0'
|
25
|
-
spec.add_runtime_dependency 'minitest', '~> 5.7'
|
26
|
-
spec.add_runtime_dependency 'minitest-reporters', '~> 1.1.8'
|
27
24
|
|
28
|
-
spec.
|
25
|
+
spec.add_runtime_dependency 'minitest-reporters', '~> 1.1', '>= 1.1.8'
|
26
|
+
|
27
|
+
spec.add_development_dependency 'bundler', '~> 1.10'
|
29
28
|
spec.add_development_dependency 'rake', '~> 10.0'
|
30
29
|
end
|
data/old.travis.yml
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
# Links:
|
2
|
+
# Build status: https://travis-ci.org/edhowland/minitest-reporters-json_reporter
|
3
|
+
# Debug failed tests in Vagrant Travis box: http://ruby-journal.com/debug-your-failed-test-in-travis-ci/
|
4
|
+
language: ruby
|
5
|
+
rvm:
|
6
|
+
- 2.2
|
7
|
+
- jruby
|
8
|
+
- rbx-2
|
9
|
+
# uncomment and edit the following line if your project needs to run something other than `rake`:
|
10
|
+
# script: bundle exec rspec spec
|
metadata
CHANGED
@@ -1,34 +1,23 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: minitest-reporters-json_reporter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- edhowland
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-05-
|
11
|
+
date: 2016-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: minitest
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '5.7'
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - "~>"
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: '5.7'
|
27
13
|
- !ruby/object:Gem::Dependency
|
28
14
|
name: minitest-reporters
|
29
15
|
requirement: !ruby/object:Gem::Requirement
|
30
16
|
requirements:
|
31
17
|
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.1'
|
20
|
+
- - ">="
|
32
21
|
- !ruby/object:Gem::Version
|
33
22
|
version: 1.1.8
|
34
23
|
type: :runtime
|
@@ -36,6 +25,9 @@ dependencies:
|
|
36
25
|
version_requirements: !ruby/object:Gem::Requirement
|
37
26
|
requirements:
|
38
27
|
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.1'
|
30
|
+
- - ">="
|
39
31
|
- !ruby/object:Gem::Version
|
40
32
|
version: 1.1.8
|
41
33
|
- !ruby/object:Gem::Dependency
|
@@ -44,14 +36,14 @@ dependencies:
|
|
44
36
|
requirements:
|
45
37
|
- - "~>"
|
46
38
|
- !ruby/object:Gem::Version
|
47
|
-
version: '1.
|
39
|
+
version: '1.10'
|
48
40
|
type: :development
|
49
41
|
prerelease: false
|
50
42
|
version_requirements: !ruby/object:Gem::Requirement
|
51
43
|
requirements:
|
52
44
|
- - "~>"
|
53
45
|
- !ruby/object:Gem::Version
|
54
|
-
version: '1.
|
46
|
+
version: '1.10'
|
55
47
|
- !ruby/object:Gem::Dependency
|
56
48
|
name: rake
|
57
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,6 +72,7 @@ files:
|
|
80
72
|
- ".travis.yml"
|
81
73
|
- Announcement.txt
|
82
74
|
- CODE_OF_CONDUCT.md
|
75
|
+
- CONTRIBUTING.md
|
83
76
|
- Gemfile
|
84
77
|
- LICENSE.txt
|
85
78
|
- README.md
|
@@ -111,6 +104,7 @@ files:
|
|
111
104
|
- lib/minitest/reporters/json_reporter.rb
|
112
105
|
- lib/minitest/reporters/json_reporter/version.rb
|
113
106
|
- minitest-reporters-json_reporter.gemspec
|
107
|
+
- old.travis.yml
|
114
108
|
homepage: https://github.com/edhowland/minitest-reporters-json_reporter
|
115
109
|
licenses:
|
116
110
|
- MIT
|