simplecov-rspec 0.3.0 → 0.3.2

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: c140510851befaa363a4a01c35f0db12b18966dd7cb94312f4f32fe0d8772029
4
+ data.tar.gz: 399fb0c4494b9bbdbccd3e7c3e9b2be5a7856a4ef71b73e2712faff1b1dc6ea2
5
5
  SHA512:
6
- metadata.gz: f4d675d09258f5803030dd292da7bc89dfee3c8ba1dc3b0380470230dc02c495cfaaaac5473cba5bfcc29de665d9de2e3dbe123697ec3cde338caf1ddd5223ae
7
- data.tar.gz: e25a543369fc68e01a7cc7ba43d43c15b387e0339237e9bc8f01f2d5fd527f030616ca5a9494a6142e36c7104804c17cc41dcc740b78edc8e69453e8862f7d4b
6
+ metadata.gz: 402fb8ea61162c1efb934779af412e61836c872335f5c5a0264d0bd6b09be57c3ef0164210ae7336a3b9d21d4a8cbcd92c6e632653afe1fee018a9a5c95d7949
7
+ data.tar.gz: 27ef5ca48e03a7db7c2a57842f59c849aa3e210faa02bd0e749868147ed9e8dd4370efc9615083fbe5889b23cec905680dac4c7cec62dd950d3f417d9e4f06e0
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,31 @@ 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.2 (2024-09-17)
8
+
9
+ [Full Changelog](https://github.com/main-branch/simplecov-rspec/compare/v0.3.1..v0.3.2)
10
+
11
+ Changes since v0.3.1:
12
+
13
+ * 7da8291 Update links in gemspec
14
+ * c050356 Add Slack badge for this project in README
15
+ * b9e3dfb Release v0.3.1
16
+
17
+ ## v0.3.1 (2024-09-16)
18
+
19
+ [Full Changelog](https://github.com/main-branch/simplecov-rspec/compare/v0.3.0..v0.3.1)
20
+
21
+ Changes since v0.3.0:
22
+
23
+ * 1fca720 Remove unneeded --exclude options in .yardopts
24
+ * e60794d Update yardopts with new standard options
25
+ * 31537ec Fix the YARD doc generation to use the correct license file name
26
+ * aebb048 Standardize YARD and Markdown Lint configurations
27
+ * 474adfb Update CODEOWNERS file
28
+ * ca1aca3 Document why the JRuby --debug flag is being set
29
+ * 8e0ad31 Set JRuby —debug option when running tests in GitHub Actions workflows
30
+ * fa10ba3 Fix example of uncovered lines listing in README
31
+
7
32
  ## v0.3.0 (2024-09-14)
8
33
 
9
34
  [Full Changelog](https://github.com/main-branch/simplecov-rspec/compare/v0.2.1..v0.3.0)
data/README.md CHANGED
@@ -6,6 +6,7 @@
6
6
  [![Build Status](https://github.com/main-branch/simplecov-rspec/actions/workflows/continuous_integration.yml/badge.svg)](https://github.com/main-branch/simplecov-rspec/actions/workflows/continuous_integration.yml)
7
7
  [![Maintainability](https://api.codeclimate.com/v1/badges/9a58b51d18910db724c7/maintainability)](https://codeclimate.com/github/main-branch/simplecov-rspec/maintainability)
8
8
  [![Test Coverage](https://api.codeclimate.com/v1/badges/9a58b51d18910db724c7/test_coverage)](https://codeclimate.com/github/main-branch/simplecov-rspec/test_coverage)
9
+ [![Slack](https://img.shields.io/badge/slack-main--branch/simplecov--rspec-yellow.svg?logo=slack)](https://main-branch.slack.com/archives/C07MCM9J72B)
9
10
 
10
11
  `simplecov-rspec` is a Ruby gem that integrates SimpleCov with RSpec to ensure your
11
12
  tests meet a minimum coverage threshold. It enhances your test suite by automatically
@@ -24,7 +25,7 @@ FAIL: RSpec Test coverage fell below 100%
24
25
  If configured to list the lines that were not covered by tests, RSpec will additionally output:
25
26
 
26
27
  ```text
27
- The following lines were not covered by tests:
28
+ 2 lines are not covered by tests:
28
29
  ./lib/example_project.rb:74
29
30
  ./lib/example_project.rb:75
30
31
  ```
@@ -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.2'
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.2
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,9 @@ 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
+ source_code_uri: https://github.com/main-branch/simplecov-rspec
215
+ documentation_uri: https://rubydoc.info/gems/simplecov-rspec/0.3.2
216
+ changelog_uri: https://rubydoc.info/gems/simplecov-rspec/0.3.2/file/CHANGELOG.md
214
217
  rubygems_mfa_required: 'true'
215
218
  post_install_message:
216
219
  rdoc_options: []