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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 79425b4f7ac452e39470769e75a23773949d9531
4
- data.tar.gz: f5170807896b351ad3669c601c2ae3d567e17dea
3
+ metadata.gz: 637cb5c4cf030085c3cf5ea997be1ebb130de915
4
+ data.tar.gz: 4aab5a9632c88573f94b1a8daf1cd3388e667662
5
5
  SHA512:
6
- metadata.gz: 1735a7dc30c50e75ce8e5c98776ca67818c31937d49d8b6ac7ad4f01a1c1b2e4d79c513e7e963d762310b23d17baffa1ece6d69c43d4777df9176fbd766b75ce
7
- data.tar.gz: 211f32fdc974942a3354076463ec827b27ee6487662d86207e7bb3ffbe3105fa6ade14ce7db90ee83e7d1596b716124c73bfb8384fddfbe8af25e5514c6b0bf7
6
+ metadata.gz: 2da26b20f88627614a9a142ba19cc8a2a45844342d6c1bdfef840c27bdfd0ff29a81ca0aaa5572c6ac5e0d7cf73e5c7f826ffcd07b2c2bf097f2e2b566029096
7
+ data.tar.gz: 7700f3b089c870d03f72e4c5891789bf00f5ea8f551a5fd1794075287e6796b1be4178743ccd95401b760190ea6adf7a113ecccfc04d8d6f31d0696450509307
data/.travis.yml CHANGED
@@ -1,3 +1,9 @@
1
+ before_install:
2
+ - gem install bundler -v 1.10
3
+
1
4
  language: ruby
2
5
  rvm:
3
- - 2.2.2
6
+ - 2.0.0
7
+ #- 1.9.3
8
+ #- jruby-19mode
9
+ #- rbx-2
data/Announcement.txt CHANGED
@@ -1,8 +1,8 @@
1
- minitest-reporters-json_reporter version 0.9.1 has been released.
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.1
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
@@ -2,3 +2,8 @@ source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in minitest-reporters-json_reporter.gemspec
4
4
  gemspec
5
+
6
+ group :development do
7
+ gem 'minitest-reporters', '~> 1.1.8'
8
+ end
9
+
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 Version](https://badge.fury.io/rb/minitest-reporters-json_reporter.svg)][gem]
6
+ [![Build Status](https://travis-ci.org/edhowland/minitest-reporters-json_reporter.png?branch=master)](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.1
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.1",
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::/github.com/edhowland/minitest-reporters-json_reporter](https::/github.com/edhowland/minitest-reporters-json_reporter)
220
- * Bugs: https://github.com/edhowland/minitest-reporters-json_reporter/issues
221
- * Gem: [https://rubygems.org/gems/minitest-reporters-json_reporter](https://rubygems.org/gems/minitest-reporters-json_reporter)
222
- * Documentation: [http://www.rubydoc.info/gems/minitest-reporters-json_reporter/0.9.1](http://www.rubydoc.info/gems/minitest-reporters-json_reporter/0.9.1)
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
@@ -10,3 +10,5 @@ end
10
10
  task :yard do
11
11
  sh 'yardoc -o ./doc'
12
12
  end
13
+
14
+ task :default => [:test]
@@ -8,7 +8,7 @@ module Minitest
8
8
  class JsonReporter < BaseReporter
9
9
  ##
10
10
  # Version of the Minitest::Reporters::JsonReporter gem.
11
- VERSION = '0.9.1'.freeze
11
+ VERSION = '0.9.5'.freeze
12
12
  end
13
13
  end
14
14
  end
@@ -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 = Minitest::Reporters::JsonReporter::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.add_development_dependency 'bundler', '~> 1.9'
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.1
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-06 00:00:00.000000000 Z
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.9'
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.9'
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