simplecov-console 0.9.3 → 0.9.4
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/README.md +8 -1
- data/VERSION +1 -1
- data/simplecov-console.gemspec +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a1267b23851a2258f22f2d61dc91e3b4d83d4ccca4a4b5cd55088acdd490555
|
4
|
+
data.tar.gz: f81eb0ea573d57e201d9a310d0fcff5eba351d499af5bf42519c0f9399a18c33
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce0da6a41195df38f755027e5573a2a5236c8b1445f2ef41349b4748828a487a8c067115e3a188a48525b1ecc25c1c9079cf6e185c02c6cb26426cc48b59140f
|
7
|
+
data.tar.gz: 468c6aeb7d79dba8ca66c7e57341f0a02a88a7b39f6a27b47ffd71ca5bd0a623c85196d42d9459abe5f3649e4bc6921808dd93a81240147e10899e00a2969fb9
|
data/README.md
CHANGED
@@ -53,6 +53,7 @@ code, generally in your test helper or setup file.
|
|
53
53
|
### Options
|
54
54
|
|
55
55
|
```ruby
|
56
|
+
SimpleCov::Formatter::Console.use_colors = false # true (default) or false
|
56
57
|
SimpleCov::Formatter::Console.sort = 'path' # sort by file path
|
57
58
|
SimpleCov::Formatter::Console.show_covered = true # show all files in coverage report
|
58
59
|
SimpleCov::Formatter::Console.max_rows = 15 # integer
|
@@ -69,7 +70,13 @@ the uppercase name, e.g., `MAX_ROWS`.
|
|
69
70
|
|
70
71
|
#### Disabling colorized output
|
71
72
|
|
72
|
-
Color support is active by default. To disable
|
73
|
+
Color support is active by default. To disable:
|
74
|
+
|
75
|
+
```ruby
|
76
|
+
SimpleCov::Formatter::Console.use_colors = false
|
77
|
+
```
|
78
|
+
|
79
|
+
Or export `NO_COLOR=1`:
|
73
80
|
|
74
81
|
```sh
|
75
82
|
NO_COLOR=1 rake test
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.9.
|
1
|
+
0.9.4
|
data/simplecov-console.gemspec
CHANGED
@@ -2,16 +2,16 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: simplecov-console 0.9.
|
5
|
+
# stub: simplecov-console 0.9.4 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "simplecov-console".freeze
|
9
|
-
s.version = "0.9.
|
9
|
+
s.version = "0.9.4"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib".freeze]
|
13
13
|
s.authors = ["Chetan Sarva".freeze]
|
14
|
-
s.date = "2025-
|
14
|
+
s.date = "2025-07-23"
|
15
15
|
s.description = "Simple console output formatter for SimpleCov".freeze
|
16
16
|
s.email = "chetan@pixelcop.net".freeze
|
17
17
|
s.extra_rdoc_files = [
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simplecov-console
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chetan Sarva
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-07-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: simplecov
|