simplecov-rspec 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 862cb86ed8d8fab68c4634038cd69abedf062c091da28dfbf58505ef1063d4dc
4
- data.tar.gz: a05ec0c099ccb49a93a338d28b34766740d1fbbd0fe6d2b7bf53f3037f506da7
3
+ metadata.gz: 357d45f1e4b96c53d5522233609b282d46fddc7433f656649f0c5739e6a6cd4f
4
+ data.tar.gz: 39cfacd21df933b7f17b6eaa547bfd7caaf78e05cdede1a4e71eb2d5ecabcbf8
5
5
  SHA512:
6
- metadata.gz: f4d675d09258f5803030dd292da7bc89dfee3c8ba1dc3b0380470230dc02c495cfaaaac5473cba5bfcc29de665d9de2e3dbe123697ec3cde338caf1ddd5223ae
7
- data.tar.gz: e25a543369fc68e01a7cc7ba43d43c15b387e0339237e9bc8f01f2d5fd527f030616ca5a9494a6142e36c7104804c17cc41dcc740b78edc8e69453e8862f7d4b
6
+ metadata.gz: 2fd6556e1261bdd178cf03afe828aadaf4ab9deb228dae5aaf51440e52b481808f53382d7c0e75073caf25d408802b94b91036ebae9a1ad791d5d5378a9b443a
7
+ data.tar.gz: d4129677343eb1099fff8e72286f023f09124551e8d73770c9aa2fecdb4624d09c4cdc4f3331ab5d2f21a2ffcdd5fa4294430457ff93aa3de7e2738d7eac4000
data/.markdownlint.yml ADDED
@@ -0,0 +1,25 @@
1
+ default: true
2
+
3
+ # Unordered list indentation
4
+ MD007: { indent: 2 }
5
+
6
+ # Line length
7
+ MD013: { line_length: 90, tables: false, code_blocks: false }
8
+
9
+ # Heading duplication is allowed for non-sibling headings
10
+ MD024: { siblings_only: true }
11
+
12
+ # Do not allow the specified trailing punctuation in a header
13
+ MD026: { punctuation: '.,;:' }
14
+
15
+ # Order list items must have a prefix that increases in numerical order
16
+ MD029: { style: 'ordered' }
17
+
18
+ # Lists do not need to be surrounded by blank lines
19
+ MD032: false
20
+
21
+ # Allow raw HTML in Markdown
22
+ MD033: false
23
+
24
+ # Allow emphasis to be used instead of a heading
25
+ MD036: false
data/.yardopts ADDED
@@ -0,0 +1,8 @@
1
+ --no-private
2
+ --hide-void-return
3
+ --markup-provider=redcarpet
4
+ --markup markdown
5
+ - CHANGELOG.md
6
+ - CONTRIBUTING.md
7
+ - RELEASING.md
8
+ - LICENSE.txt
data/CHANGELOG.md CHANGED
@@ -4,6 +4,21 @@ Changes for each release are listed in this file.
4
4
 
5
5
  This project adheres to [Semantic Versioning](https://semver.org/) for its releases.
6
6
 
7
+ ## v0.3.1 (2024-09-16)
8
+
9
+ [Full Changelog](https://github.com/main-branch/simplecov-rspec/compare/v0.3.0..v0.3.1)
10
+
11
+ Changes since v0.3.0:
12
+
13
+ * 1fca720 Remove unneeded --exclude options in .yardopts
14
+ * e60794d Update yardopts with new standard options
15
+ * 31537ec Fix the YARD doc generation to use the correct license file name
16
+ * aebb048 Standardize YARD and Markdown Lint configurations
17
+ * 474adfb Update CODEOWNERS file
18
+ * ca1aca3 Document why the JRuby --debug flag is being set
19
+ * 8e0ad31 Set JRuby —debug option when running tests in GitHub Actions workflows
20
+ * fa10ba3 Fix example of uncovered lines listing in README
21
+
7
22
  ## v0.3.0 (2024-09-14)
8
23
 
9
24
  [Full Changelog](https://github.com/main-branch/simplecov-rspec/compare/v0.2.1..v0.3.0)
data/README.md CHANGED
@@ -24,7 +24,7 @@ FAIL: RSpec Test coverage fell below 100%
24
24
  If configured to list the lines that were not covered by tests, RSpec will additionally output:
25
25
 
26
26
  ```text
27
- The following lines were not covered by tests:
27
+ 2 lines are not covered by tests:
28
28
  ./lib/example_project.rb:74
29
29
  ./lib/example_project.rb:75
30
30
  ```
@@ -3,6 +3,6 @@
3
3
  module Simplecov
4
4
  class Rspec
5
5
  # This gem's version
6
- VERSION = '0.3.0'
6
+ VERSION = '0.3.1'
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simplecov-rspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Couball
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-09-14 00:00:00.000000000 Z
11
+ date: 2024-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: simplecov
@@ -194,8 +194,10 @@ executables: []
194
194
  extensions: []
195
195
  extra_rdoc_files: []
196
196
  files:
197
+ - ".markdownlint.yml"
197
198
  - ".rspec"
198
199
  - ".rubocop.yml"
200
+ - ".yardopts"
199
201
  - CHANGELOG.md
200
202
  - CODE_OF_CONDUCT.md
201
203
  - LICENSE.txt
@@ -209,8 +211,8 @@ licenses:
209
211
  metadata:
210
212
  allowed_push_host: https://rubygems.org
211
213
  homepage_uri: https://github.com/main-branch/simplecov-rspec
212
- changelog_uri: https://rubydoc.info/gems/simplecov-rspec/0.3.0/file/CHANGELOG.md
213
- documentation_uri: https://rubydoc.info/gems/simplecov-rspec/0.3.0
214
+ changelog_uri: https://rubydoc.info/gems/simplecov-rspec/0.3.1/file/CHANGELOG.md
215
+ documentation_uri: https://rubydoc.info/gems/simplecov-rspec/0.3.1
214
216
  rubygems_mfa_required: 'true'
215
217
  post_install_message:
216
218
  rdoc_options: []