simple_cov-formatter-terminal 0.2.0 → 0.2.1
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/.release_assistant.yml +3 -0
- data/CHANGELOG.md +3 -0
- data/Gemfile.lock +2 -2
- data/README.md +2 -3
- data/lib/simple_cov/formatter/terminal/version.rb +1 -1
- data/simple_cov-formatter-terminal.gemspec +3 -3
- metadata +8 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ca09fa772800b0b046b741d2a3f14873366ffd1304932fcdca067e532f4b722
|
|
4
|
+
data.tar.gz: 39890a17ccb4d306282eec63f16bd1c4e6e16ae7795f32ce51ff481bf04f9cf1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 350d19b232f6368033ef7906ec62a8c52f2ea78169248afe926cfbd2c5f97ac65dc859f9d4292a516f147be8897c239df2fb9baea5e2065c262193b5b9ca576c
|
|
7
|
+
data.tar.gz: 0e0d63d41c2006f2b6b9cb06244b7efe362f18fec2812259a722657f93b9f04d2e1c046051ac090410c66466a4f8b7eecb7fdb7399815b140556236523237737
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -18,7 +18,7 @@ GIT
|
|
|
18
18
|
PATH
|
|
19
19
|
remote: .
|
|
20
20
|
specs:
|
|
21
|
-
simple_cov-formatter-terminal (0.2.
|
|
21
|
+
simple_cov-formatter-terminal (0.2.1)
|
|
22
22
|
activesupport (>= 7.0.4, < 8)
|
|
23
23
|
memoist (>= 0.16.2, < 1)
|
|
24
24
|
rouge (>= 4.0.0, < 5)
|
|
@@ -128,4 +128,4 @@ RUBY VERSION
|
|
|
128
128
|
ruby 3.2.0p0
|
|
129
129
|
|
|
130
130
|
BUNDLED WITH
|
|
131
|
-
2.4.
|
|
131
|
+
2.4.4
|
data/README.md
CHANGED
|
@@ -6,12 +6,11 @@
|
|
|
6
6
|
|
|
7
7
|
*Note:* This gem depends upon RSpec. If you aren't using RSpec to run your tests, it won't work!
|
|
8
8
|
|
|
9
|
-
Add the gem to your application's `Gemfile`.
|
|
10
|
-
need to install it from GitHub.
|
|
9
|
+
Add the gem to your application's `Gemfile`.
|
|
11
10
|
|
|
12
11
|
```rb
|
|
13
12
|
group :test do
|
|
14
|
-
gem 'simple_cov-formatter-terminal'
|
|
13
|
+
gem 'simple_cov-formatter-terminal'
|
|
15
14
|
end
|
|
16
15
|
```
|
|
17
16
|
|
|
@@ -10,14 +10,14 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
|
|
11
11
|
spec.summary = 'Print detailed code coverage info to the terminal'
|
|
12
12
|
spec.description = 'Print detailed code coverage info to the terminal'
|
|
13
|
-
spec.homepage = 'https://github.com/davidrunger/
|
|
13
|
+
spec.homepage = 'https://github.com/davidrunger/simple_cov-formatter-terminal'
|
|
14
14
|
spec.license = 'MIT'
|
|
15
15
|
spec.required_ruby_version = '>= 3.2.0'
|
|
16
16
|
|
|
17
17
|
spec.metadata['homepage_uri'] = spec.homepage
|
|
18
|
-
spec.metadata['source_code_uri'] = 'https://github.com/davidrunger/
|
|
18
|
+
spec.metadata['source_code_uri'] = 'https://github.com/davidrunger/simple_cov-formatter-terminal'
|
|
19
19
|
spec.metadata['changelog_uri'] =
|
|
20
|
-
'https://github.com/davidrunger/
|
|
20
|
+
'https://github.com/davidrunger/simple_cov-formatter-terminal/blob/master/CHANGELOG.md'
|
|
21
21
|
|
|
22
22
|
# Specify which files should be added to the gem when it is released.
|
|
23
23
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simple_cov-formatter-terminal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Runger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-02-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -117,6 +117,7 @@ executables: []
|
|
|
117
117
|
extensions: []
|
|
118
118
|
extra_rdoc_files: []
|
|
119
119
|
files:
|
|
120
|
+
- ".release_assistant.yml"
|
|
120
121
|
- ".rspec"
|
|
121
122
|
- ".rubocop.yml"
|
|
122
123
|
- CHANGELOG.md
|
|
@@ -138,13 +139,13 @@ files:
|
|
|
138
139
|
- lib/simple_cov/formatter/terminal/target_file_writer.rb
|
|
139
140
|
- lib/simple_cov/formatter/terminal/version.rb
|
|
140
141
|
- simple_cov-formatter-terminal.gemspec
|
|
141
|
-
homepage: https://github.com/davidrunger/
|
|
142
|
+
homepage: https://github.com/davidrunger/simple_cov-formatter-terminal
|
|
142
143
|
licenses:
|
|
143
144
|
- MIT
|
|
144
145
|
metadata:
|
|
145
|
-
homepage_uri: https://github.com/davidrunger/
|
|
146
|
-
source_code_uri: https://github.com/davidrunger/
|
|
147
|
-
changelog_uri: https://github.com/davidrunger/
|
|
146
|
+
homepage_uri: https://github.com/davidrunger/simple_cov-formatter-terminal
|
|
147
|
+
source_code_uri: https://github.com/davidrunger/simple_cov-formatter-terminal
|
|
148
|
+
changelog_uri: https://github.com/davidrunger/simple_cov-formatter-terminal/blob/master/CHANGELOG.md
|
|
148
149
|
rubygems_mfa_required: 'true'
|
|
149
150
|
post_install_message:
|
|
150
151
|
rdoc_options: []
|
|
@@ -161,7 +162,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
161
162
|
- !ruby/object:Gem::Version
|
|
162
163
|
version: '0'
|
|
163
164
|
requirements: []
|
|
164
|
-
rubygems_version: 3.4.
|
|
165
|
+
rubygems_version: 3.4.4
|
|
165
166
|
signing_key:
|
|
166
167
|
specification_version: 4
|
|
167
168
|
summary: Print detailed code coverage info to the terminal
|