minitest-reporters 1.3.6 → 1.3.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +28 -27
  3. data/.rubocop.yml +77 -77
  4. data/.ruby-gemset +1 -1
  5. data/.travis.yml +14 -14
  6. data/.yardopts +5 -5
  7. data/CHANGELOG.md +102 -93
  8. data/Gemfile +2 -2
  9. data/LICENSE +20 -20
  10. data/README.md +135 -135
  11. data/Rakefile +70 -70
  12. data/appveyor.yml +22 -22
  13. data/lib/minitest/extensible_backtrace_filter.rb +67 -67
  14. data/lib/minitest/minitest_reporter_plugin.rb +76 -76
  15. data/lib/minitest/old_activesupport_fix.rb +24 -24
  16. data/lib/minitest/relative_position.rb +26 -26
  17. data/lib/minitest/reporters/ansi.rb +30 -30
  18. data/lib/minitest/reporters/base_reporter.rb +136 -136
  19. data/lib/minitest/reporters/default_reporter.rb +228 -228
  20. data/lib/minitest/reporters/html_reporter.rb +224 -224
  21. data/lib/minitest/reporters/junit_reporter.rb +168 -164
  22. data/lib/minitest/reporters/mean_time_reporter.rb +388 -388
  23. data/lib/minitest/reporters/progress_reporter.rb +104 -96
  24. data/lib/minitest/reporters/ruby_mate_reporter.rb +54 -54
  25. data/lib/minitest/reporters/rubymine_reporter.rb +116 -116
  26. data/lib/minitest/reporters/spec_reporter.rb +61 -61
  27. data/lib/minitest/reporters/version.rb +5 -5
  28. data/lib/minitest/reporters.rb +91 -91
  29. data/lib/minitest/templates/index.html.erb +82 -82
  30. data/minitest-reporters.gemspec +31 -32
  31. data/test/fixtures/junit_filename_bug_example_test.rb +41 -41
  32. data/test/fixtures/mean_time_test.rb +36 -36
  33. data/test/fixtures/progress_detailed_skip_test.rb +8 -8
  34. data/test/fixtures/progress_test.rb +8 -8
  35. data/test/fixtures/sample_test.rb +15 -15
  36. data/test/fixtures/spec_test.rb +18 -18
  37. data/test/gallery/bad_test.rb +25 -25
  38. data/test/gallery/good_test.rb +14 -14
  39. data/test/integration/reporters/junit_reporter_test.rb +12 -12
  40. data/test/integration/reporters/mean_time_reporter_test.rb +7 -7
  41. data/test/integration/reporters/progress_reporter_test.rb +40 -40
  42. data/test/test_helper.rb +22 -22
  43. data/test/unit/minitest/extensible_backtrace_filter_test.rb +42 -42
  44. data/test/unit/minitest/junit_reporter_test.rb +46 -23
  45. data/test/unit/minitest/mean_time_reporter_unit_test.rb +149 -149
  46. data/test/unit/minitest/minitest_reporter_plugin_test.rb +14 -14
  47. data/test/unit/minitest/reporters_test.rb +65 -65
  48. data/test/unit/minitest/spec_reporter_test.rb +62 -62
  49. metadata +22 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a9ccfab0a1d795a19ea35a537ed3f2d19ffef7d2a92c4b66a595f5a66545dbe
4
- data.tar.gz: 071514d4da633a46f584bab011fee4576ba8532034e2e6805ea46f5e132bd645
3
+ metadata.gz: 4123119ced267253520fc46bb0836603ce932c2285b94fec9be87769de6b6a21
4
+ data.tar.gz: 93754ce74501aa021c497688b4e1b54c6ab2edbe815a651941a833e252cafb3a
5
5
  SHA512:
6
- metadata.gz: 6c34f15614ebbe11314ce92ed6ba40fc0d8428d8491e6d199ae6a3edf322811b3d5d26e4fbf726235a316182dbf0869f7c01ff99760ed0cf8d3b37b1189d27da
7
- data.tar.gz: 6b6741c9719ca7ad04ea78f8870ef626fa498f07209497f7ecd030b74769d20c6dcd2d68a61a911feb85ac3acee981b9f37011d553511b21ccbab128b9c7eb8b
6
+ metadata.gz: da75f810d8ab6f3d7dca4bc0ffbcdaa9f58a0e4b107b9e159dadf26327776957c5434eed3aaade73ae468869cd94b32bd5ecca8e416ae4ed2de18aa348aadef0
7
+ data.tar.gz: 0b935c8e426330064cce777e2ad25c0433a6cd6dd90e4846a1b06354306eaa37d54f0ac5281b389a8af5c76765725a0349ce83a4cf1b992e76e1e0263db72919
data/.gitignore CHANGED
@@ -1,27 +1,28 @@
1
- coverage
2
- rdoc
3
- pkg
4
- test/tmp
5
- test/version_tmp
6
- test/reports
7
- test/html_reports
8
- tmp
9
- pkg
10
- *.gem
11
- *.rbc
12
- lib/bundler/man
13
- spec/reports
14
- .config
15
- InstalledFiles
16
- .bundle
17
-
18
- # YARD artifacts
19
- .yardoc
20
- _yardoc
21
- doc/
22
-
23
- # Gem-specific
24
- Gemfile.lock
25
- .idea/
26
- .ruby-version
27
-
1
+ coverage
2
+ rdoc
3
+ pkg
4
+ test/tmp
5
+ test/version_tmp
6
+ test/reports
7
+ test/html_reports
8
+ tmp
9
+ pkg
10
+ *.gem
11
+ *.rbc
12
+ lib/bundler/man
13
+ spec/reports
14
+ .config
15
+ InstalledFiles
16
+ .bundle
17
+
18
+ # YARD artifacts
19
+ .yardoc
20
+ _yardoc
21
+ doc/
22
+
23
+ # Gem-specific
24
+ Gemfile.lock
25
+ .idea/
26
+ .ruby-version
27
+ vendor
28
+
data/.rubocop.yml CHANGED
@@ -1,77 +1,77 @@
1
- ---
2
- #AllCops:
3
- # DisabledByDefault: true
4
-
5
- Layout:
6
- Enabled: true
7
-
8
- Layout/MultilineOperationIndentation:
9
- EnforcedStyle: indented
10
-
11
- Lint:
12
- Enabled: true
13
-
14
- Metrics:
15
- Severity: refactor
16
- Enabled: false
17
-
18
- Metrics/LineLength:
19
- Severity: convention
20
- Max: 130
21
-
22
- Naming:
23
- Enabled: true
24
-
25
- Naming/UncommunicativeMethodParamName:
26
- MinNameLength: 1
27
-
28
- Performance:
29
- Enabled: true
30
-
31
- Rails:
32
- Enabled: false
33
-
34
- Security:
35
- Enabled: true
36
-
37
- #todo: enable
38
- Style:
39
- Enabled: true
40
-
41
- Style/FormatStringToken:
42
- Enabled: false
43
-
44
- Style/IfUnlessModifier:
45
- Enabled: false
46
-
47
- #todo: enable
48
- Style/StringLiterals:
49
- Enabled: false
50
-
51
- Style/TrailingCommaInHashLiteral:
52
- EnforcedStyleForMultiline: comma
53
-
54
- #todo: enable
55
- Style/HashSyntax:
56
- Enabled: false
57
-
58
- #todo: enable
59
- Style/FormatString:
60
- Enabled: false
61
-
62
- #todo: enable
63
- Style/ClassVars:
64
- Enabled: false
65
-
66
- #todo: enable
67
- Style/Alias:
68
- Enabled: false
69
-
70
- Style/Documentation:
71
- Enabled: false
72
-
73
- Bundler:
74
- Enabled: true
75
-
76
- Gemspec:
77
- Enabled: true
1
+ ---
2
+ #AllCops:
3
+ # DisabledByDefault: true
4
+
5
+ Layout:
6
+ Enabled: true
7
+
8
+ Layout/MultilineOperationIndentation:
9
+ EnforcedStyle: indented
10
+
11
+ Lint:
12
+ Enabled: true
13
+
14
+ Metrics:
15
+ Severity: refactor
16
+ Enabled: false
17
+
18
+ Metrics/LineLength:
19
+ Severity: convention
20
+ Max: 130
21
+
22
+ Naming:
23
+ Enabled: true
24
+
25
+ Naming/UncommunicativeMethodParamName:
26
+ MinNameLength: 1
27
+
28
+ Performance:
29
+ Enabled: true
30
+
31
+ Rails:
32
+ Enabled: false
33
+
34
+ Security:
35
+ Enabled: true
36
+
37
+ #todo: enable
38
+ Style:
39
+ Enabled: true
40
+
41
+ Style/FormatStringToken:
42
+ Enabled: false
43
+
44
+ Style/IfUnlessModifier:
45
+ Enabled: false
46
+
47
+ #todo: enable
48
+ Style/StringLiterals:
49
+ Enabled: false
50
+
51
+ Style/TrailingCommaInHashLiteral:
52
+ EnforcedStyleForMultiline: comma
53
+
54
+ #todo: enable
55
+ Style/HashSyntax:
56
+ Enabled: false
57
+
58
+ #todo: enable
59
+ Style/FormatString:
60
+ Enabled: false
61
+
62
+ #todo: enable
63
+ Style/ClassVars:
64
+ Enabled: false
65
+
66
+ #todo: enable
67
+ Style/Alias:
68
+ Enabled: false
69
+
70
+ Style/Documentation:
71
+ Enabled: false
72
+
73
+ Bundler:
74
+ Enabled: true
75
+
76
+ Gemspec:
77
+ Enabled: true
data/.ruby-gemset CHANGED
@@ -1 +1 @@
1
- minitest-reporters
1
+ minitest-reporters
data/.travis.yml CHANGED
@@ -1,14 +1,14 @@
1
- script: 'rake test'
2
- before_install:
3
- - gem install bundler gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
4
- - gem install bundler -v '< 2'
5
- rvm:
6
- - 2
7
- - 2.5
8
- - 2.4
9
- - 2.3
10
- - 2.2
11
- - 2.1
12
- - 2.0
13
- - 1.9.3
14
- - jruby
1
+ script: 'rake test'
2
+ before_install:
3
+ - gem install bundler gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
4
+ - gem install bundler -v '< 2'
5
+ rvm:
6
+ - 2
7
+ - 2.5
8
+ - 2.4
9
+ - 2.3
10
+ - 2.2
11
+ - 2.1
12
+ - 2.0
13
+ - 1.9.3
14
+ - jruby
data/.yardopts CHANGED
@@ -1,6 +1,6 @@
1
- --readme README.md
2
- --markup markdown
3
- --markup-provider maruku
4
- --default-return ""
5
- --title "Minitest-reporters Documentation"
1
+ --readme README.md
2
+ --markup markdown
3
+ --markup-provider maruku
4
+ --default-return ""
5
+ --title "Minitest-reporters Documentation"
6
6
  --hide-void-return
data/CHANGELOG.md CHANGED
@@ -1,93 +1,102 @@
1
- ### [dev](https://github.com/kern/minitest-reporters/compare/v1.3.6...master)
2
-
3
- ### [1.3.6](https://github.com/kern/minitest-reporters/compare/v1.3.5...v1.3.6)
4
-
5
- * fixed possible null pointer in #after_suite [#274](https://github.com/kern/minitest-reporters/pull/274)
6
- contributed by [casperisfine](https://github.com/casperisfine)
7
-
8
- ### [1.3.5](https://github.com/kern/minitest-reporters/compare/v1.3.5.beta1...v1.3.5)
9
-
10
- ### [1.3.5.beta1](https://github.com/kern/minitest-reporters/compare/v1.3.4...v1.3.5.beta1)
11
-
12
- * additional fix for reporting slowest suites by DefaultReporter [#270](https://github.com/kern/minitest-reporters/issues/270)
13
-
14
- ### [1.3.4](https://github.com/kern/minitest-reporters/compare/v1.3.3...v1.3.4)
15
-
16
- * fixed the way DefaultReporter reports slowest suites [#270](https://github.com/kern/minitest-reporters/issues/270)
17
-
18
- ### [1.3.3](https://github.com/kern/minitest-reporters/compare/v1.3.2...v1.3.3)
19
-
20
- * fixed problem with default report paths for MeanTimeReporter [#269](https://github.com/kern/minitest-reporters/pull/269)
21
- contributed by [duonoid](https://github.com/duonoid)
22
-
23
- ### [1.3.2](https://github.com/kern/minitest-reporters/compare/v1.3.2.beta2...v1.3.2)
24
-
25
- ### [1.3.2.beta2](https://github.com/kern/minitest-reporters/compare/v1.3.2.beta1...v1.3.2.beta2)
26
-
27
- * fixed the way JUnitReporter calculates relative path [#258](https://github.com/kern/minitest-reporters/issues/258)
28
-
29
- ### [1.3.2.beta1](https://github.com/kern/minitest-reporters/compare/v1.3.1...v1.3.2.beta1)
30
-
31
- * SpecReporter do not print exception name any more (unless it is an test error) [#264](https://github.com/kern/minitest-reporters/issues/264)
32
- * Fixed loading error caused by fix for [#265](https://github.com/kern/minitest-reporters/pull/265)
33
- see [#267](https://github.com/kern/minitest-reporters/issues/267) and
34
- [#268](https://github.com/kern/minitest-reporters/pull/268) for more details.
35
-
36
- ### [1.3.1](https://github.com/kern/minitest-reporters/compare/v1.3.1.beta1...v1.3.1)
37
-
38
- ### [1.3.1.beta1](https://github.com/kern/minitest-reporters/compare/v1.3.0...v1.3.1.beta1)
39
-
40
- * Fixed time reporting [#265](https://github.com/kern/minitest-reporters/pull/265) contributed by [brendandeere](https://github.com/brendandeere)
41
-
42
- ### [1.3.0](https://github.com/kern/minitest-reporters/compare/v1.3.0.beta3...v1.3.0)
43
-
44
- ### [1.3.0.beta3](https://github.com/kern/minitest-reporters/compare/v1.3.0.beta2...v1.3.0.beta3)
45
-
46
- * [#261](https://github.com/kern/minitest-reporters/issues/261) fixed by [#262](https://github.com/kern/minitest-reporters/pull/262) contributed by [trabulmonkee](https://github.com/trabulmonkee)
47
-
48
- ### [1.3.0.beta2](https://github.com/kern/minitest-reporters/compare/v1.3.0.beta1...v1.3.0.beta2)
49
-
50
- * JUnit reporter fixed to comply with JUnit spec ([#257](https://github.com/kern/minitest-reporters/issues/257), [#260](https://github.com/kern/minitest-reporters/pull/260) contributed by [brettwgreen](https://github.com/brettwgreen))
51
-
52
- ### [1.3.0.beta1](https://github.com/kern/minitest-reporters/compare/v1.2.0...v1.3.0.beta1)
53
-
54
- * MINITEST_REPORTER env variable can be used to override reporter [#256](https://github.com/kern/minitest-reporters/pull/256) (contributed by [brettwgreen](https://github.com/brettwgreen))
55
-
56
- ### [1.2.0](https://github.com/kern/minitest-reporters/compare/v1.2.0.beta3...v1.2.0)
57
-
58
- ### [1.2.0.beta3](https://github.com/kern/minitest-reporters/compare/v1.2.0.beta2...v1.2.0.beta3)
59
-
60
- * junit reporter changed to support mintest >= 5.11 [#252](https://github.com/kern/minitest-reporters/pull/252) (contributed by [Kevinrob](https://github.com/Kevinrob))
61
- * all reporters changed to be compatible with minitest >= 5.11 (if not - report a bug ;)
62
-
63
- ### [1.2.0.beta2](https://github.com/kern/minitest-reporters/compare/v1.2.0.beta1...v1.2.0.beta2)
64
-
65
- * fixed uninitialized time in junit reporter [#251](https://github.com/kern/minitest-reporters/issues/251)
66
- * format option added to progress reporter [#240](https://github.com/kern/minitest-reporters/pull/240) (contributed by [jorgesmu](https://github.com/jorgesmu))
67
- * improved output of junit reporter [#245](https://github.com/kern/minitest-reporters/pull/245) (contributed by [jules2689](https://github.com/jules2689))
68
-
69
- ### [1.2.0.beta1](https://github.com/kern/minitest-reporters/compare/v1.1.19...v1.2.0.beta1)
70
-
71
- * SpecReporter regression for Minitest 5.11.1 fixed [#250](https://github.com/kern/minitest-reporters/pull/250) (contrinuted by [mbround18](https://github.com/mbround18))
72
-
73
- ### [1.1.19](https://github.com/kern/minitest-reporters/compare/v1.1.18...v1.1.19)
74
-
75
- * Reverted [#236](https://github.com/kern/minitest-reporters/pull/236) (it creates too many problems)
76
-
77
- ### [1.1.18](https://github.com/kern/minitest-reporters/compare/v1.1.17...v1.1.18)
78
-
79
- * Fixed problem with Rails 5.1.3 [#230](https://github.com/kern/minitest-reporters/issues/230) by [#236](https://github.com/kern/minitest-reporters/pull/236) (contributed by [samcday](https://github.com/samcday))
80
-
81
- ### [1.1.17](https://github.com/kern/minitest-reporters/compare/v1.1.16...v1.1.17)
82
-
83
- * Fixed tests' counting [#232](https://github.com/kern/minitest-reporters/pull/232) (contributed by [adaedra](https://github.com/adaedra))
84
-
85
- ### [1.1.16](https://github.com/kern/minitest-reporters/compare/v1.1.15...v1.1.16)
86
-
87
- * reverted fix for [#231](https://github.com/kern/minitest-reporters/pull/231) to fix[#233](https://github.com/kern/minitest-reporters/pull/233)
88
-
89
- ## [1.1.15](https://github.com/kern/minitest-reporters/compare/v1.1.14...v1.1.15)
90
-
91
- * Fixed problem with handling SIGINFO [#231](https://github.com/kern/minitest-reporters/pull/231) (contributed by [joshpencheon](https://github.com/joshpencheon))
92
-
93
-
1
+ ### [dev](https://github.com/kern/minitest-reporters/compare/v1.3.8...master)
2
+
3
+ ### [1.3.8](https://github.com/kern/minitest-reporters/compare/v1.3.7...v1.3.8)
4
+
5
+ * Fixed default ProgressReporter regression from [#278](https://github.com/kern/minitest-reporters/pull/278); fix [#284](https://github.com/kern/minitest-reporters/pull/284) contributed by [bobmaerten](https://github.com/bobmaerten)
6
+
7
+ ### [1.3.7](https://github.com/kern/minitest-reporters/compare/v1.3.6...v1.3.7)
8
+
9
+ * added ability to specify output dir of JUnitReporter through ENV [#277](https://github.com/kern/minitest-reporters/pull/277) countributed by [KevinSjoberg](https://github.com/KevinSjoberg)
10
+ * Added verbose functionality to ProgressReporter [#278](https://github.com/kern/minitest-reporters/pull/278) contributed by [senhalil](https://github.com/senhalil)
11
+
12
+ ### [1.3.6](https://github.com/kern/minitest-reporters/compare/v1.3.5...v1.3.6)
13
+
14
+ * fixed possible null pointer in #after_suite [#274](https://github.com/kern/minitest-reporters/pull/274)
15
+ contributed by [casperisfine](https://github.com/casperisfine)
16
+
17
+ ### [1.3.5](https://github.com/kern/minitest-reporters/compare/v1.3.5.beta1...v1.3.5)
18
+
19
+ ### [1.3.5.beta1](https://github.com/kern/minitest-reporters/compare/v1.3.4...v1.3.5.beta1)
20
+
21
+ * additional fix for reporting slowest suites by DefaultReporter [#270](https://github.com/kern/minitest-reporters/issues/270)
22
+
23
+ ### [1.3.4](https://github.com/kern/minitest-reporters/compare/v1.3.3...v1.3.4)
24
+
25
+ * fixed the way DefaultReporter reports slowest suites [#270](https://github.com/kern/minitest-reporters/issues/270)
26
+
27
+ ### [1.3.3](https://github.com/kern/minitest-reporters/compare/v1.3.2...v1.3.3)
28
+
29
+ * fixed problem with default report paths for MeanTimeReporter [#269](https://github.com/kern/minitest-reporters/pull/269)
30
+ contributed by [duonoid](https://github.com/duonoid)
31
+
32
+ ### [1.3.2](https://github.com/kern/minitest-reporters/compare/v1.3.2.beta2...v1.3.2)
33
+
34
+ ### [1.3.2.beta2](https://github.com/kern/minitest-reporters/compare/v1.3.2.beta1...v1.3.2.beta2)
35
+
36
+ * fixed the way JUnitReporter calculates relative path [#258](https://github.com/kern/minitest-reporters/issues/258)
37
+
38
+ ### [1.3.2.beta1](https://github.com/kern/minitest-reporters/compare/v1.3.1...v1.3.2.beta1)
39
+
40
+ * SpecReporter do not print exception name any more (unless it is an test error) [#264](https://github.com/kern/minitest-reporters/issues/264)
41
+ * Fixed loading error caused by fix for [#265](https://github.com/kern/minitest-reporters/pull/265)
42
+ see [#267](https://github.com/kern/minitest-reporters/issues/267) and
43
+ [#268](https://github.com/kern/minitest-reporters/pull/268) for more details.
44
+
45
+ ### [1.3.1](https://github.com/kern/minitest-reporters/compare/v1.3.1.beta1...v1.3.1)
46
+
47
+ ### [1.3.1.beta1](https://github.com/kern/minitest-reporters/compare/v1.3.0...v1.3.1.beta1)
48
+
49
+ * Fixed time reporting [#265](https://github.com/kern/minitest-reporters/pull/265) contributed by [brendandeere](https://github.com/brendandeere)
50
+
51
+ ### [1.3.0](https://github.com/kern/minitest-reporters/compare/v1.3.0.beta3...v1.3.0)
52
+
53
+ ### [1.3.0.beta3](https://github.com/kern/minitest-reporters/compare/v1.3.0.beta2...v1.3.0.beta3)
54
+
55
+ * [#261](https://github.com/kern/minitest-reporters/issues/261) fixed by [#262](https://github.com/kern/minitest-reporters/pull/262) contributed by [trabulmonkee](https://github.com/trabulmonkee)
56
+
57
+ ### [1.3.0.beta2](https://github.com/kern/minitest-reporters/compare/v1.3.0.beta1...v1.3.0.beta2)
58
+
59
+ * JUnit reporter fixed to comply with JUnit spec ([#257](https://github.com/kern/minitest-reporters/issues/257), [#260](https://github.com/kern/minitest-reporters/pull/260) contributed by [brettwgreen](https://github.com/brettwgreen))
60
+
61
+ ### [1.3.0.beta1](https://github.com/kern/minitest-reporters/compare/v1.2.0...v1.3.0.beta1)
62
+
63
+ * MINITEST_REPORTER env variable can be used to override reporter [#256](https://github.com/kern/minitest-reporters/pull/256) (contributed by [brettwgreen](https://github.com/brettwgreen))
64
+
65
+ ### [1.2.0](https://github.com/kern/minitest-reporters/compare/v1.2.0.beta3...v1.2.0)
66
+
67
+ ### [1.2.0.beta3](https://github.com/kern/minitest-reporters/compare/v1.2.0.beta2...v1.2.0.beta3)
68
+
69
+ * junit reporter changed to support mintest >= 5.11 [#252](https://github.com/kern/minitest-reporters/pull/252) (contributed by [Kevinrob](https://github.com/Kevinrob))
70
+ * all reporters changed to be compatible with minitest >= 5.11 (if not - report a bug ;)
71
+
72
+ ### [1.2.0.beta2](https://github.com/kern/minitest-reporters/compare/v1.2.0.beta1...v1.2.0.beta2)
73
+
74
+ * fixed uninitialized time in junit reporter [#251](https://github.com/kern/minitest-reporters/issues/251)
75
+ * format option added to progress reporter [#240](https://github.com/kern/minitest-reporters/pull/240) (contributed by [jorgesmu](https://github.com/jorgesmu))
76
+ * improved output of junit reporter [#245](https://github.com/kern/minitest-reporters/pull/245) (contributed by [jules2689](https://github.com/jules2689))
77
+
78
+ ### [1.2.0.beta1](https://github.com/kern/minitest-reporters/compare/v1.1.19...v1.2.0.beta1)
79
+
80
+ * SpecReporter regression for Minitest 5.11.1 fixed [#250](https://github.com/kern/minitest-reporters/pull/250) (contrinuted by [mbround18](https://github.com/mbround18))
81
+
82
+ ### [1.1.19](https://github.com/kern/minitest-reporters/compare/v1.1.18...v1.1.19)
83
+
84
+ * Reverted [#236](https://github.com/kern/minitest-reporters/pull/236) (it creates too many problems)
85
+
86
+ ### [1.1.18](https://github.com/kern/minitest-reporters/compare/v1.1.17...v1.1.18)
87
+
88
+ * Fixed problem with Rails 5.1.3 [#230](https://github.com/kern/minitest-reporters/issues/230) by [#236](https://github.com/kern/minitest-reporters/pull/236) (contributed by [samcday](https://github.com/samcday))
89
+
90
+ ### [1.1.17](https://github.com/kern/minitest-reporters/compare/v1.1.16...v1.1.17)
91
+
92
+ * Fixed tests' counting [#232](https://github.com/kern/minitest-reporters/pull/232) (contributed by [adaedra](https://github.com/adaedra))
93
+
94
+ ### [1.1.16](https://github.com/kern/minitest-reporters/compare/v1.1.15...v1.1.16)
95
+
96
+ * reverted fix for [#231](https://github.com/kern/minitest-reporters/pull/231) to fix[#233](https://github.com/kern/minitest-reporters/pull/233)
97
+
98
+ ## [1.1.15](https://github.com/kern/minitest-reporters/compare/v1.1.14...v1.1.15)
99
+
100
+ * Fixed problem with handling SIGINFO [#231](https://github.com/kern/minitest-reporters/pull/231) (contributed by [joshpencheon](https://github.com/joshpencheon))
101
+
102
+
data/Gemfile CHANGED
@@ -1,2 +1,2 @@
1
- source "https://rubygems.org"
2
- gemspec
1
+ source "https://rubygems.org"
2
+ gemspec
data/LICENSE CHANGED
@@ -1,20 +1,20 @@
1
- Copyright (c) 2018 Alexander Kern
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- "Software"), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1
+ Copyright (c) 2018 Alexander Kern
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.