You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,9 @@ Unreleased
4
4
## Breaking Changes
5
5
* Dropped support for Ruby 2.4, it reached EOL
6
6
7
+
## Primary Branch Switch
8
+
* The primary development branch is now `main`, not `master` anymore. If you get simplecov directly from github change your reference. For a while `master` will still be occasionally updated but that's no long term solion.
9
+
7
10
## Enhancements
8
11
* observe forked processes (enable with SimpleCov.enable_for_subprocesses)
9
12
* SimpleCov distinguishes better that it stopped processing because of a previous error vs. SimpleCov is the originator of said error due to coverage requirements.
[Continuous Integration]: https://github.com/colszowka/simplecov/actions?query=workflow%3Astable"SimpleCov is built around the clock by github.com"
18
+
[Continuous Integration]: https://github.com/simplecov-ruby/simplecov/actions?query=workflow%3Astable"SimpleCov is built around the clock by github.com"
19
19
[Dependencies]: https://gemnasium.com/colszowka/simplecov"SimpleCov dependencies on Gemnasium"
20
20
[simplecov-html]: https://github.com/colszowka/simplecov-html"SimpleCov HTML Formatter Source Code @ GitHub"
21
21
@@ -37,8 +37,8 @@ configured automatically when you launch SimpleCov. If you're curious, you can f
The name of the token can be changed to your liking. [Learn more about the nocov feature.]( https://github.com/colszowka/simplecov/blob/master/features/config_nocov_token.feature)
432
+
The name of the token can be changed to your liking. [Learn more about the nocov feature.]( https://github.com/simplecov-ruby/simplecov/blob/main/features/config_nocov_token.feature)
433
433
434
434
**Note:**You shouldn't have to use the nocov token to skip private methods that are being included in your coverage. If
435
435
you appropriately test the public interface of your classes and objects you should automatically get full coverage of
@@ -440,7 +440,7 @@ your private methods.
440
440
By default, SimpleCov filters everything outside of the `SimpleCov.root` directory. However, sometimes you may want
441
441
to include coverage reports for things you include as a gem, for example a Rails Engine.
442
442
443
-
Here's an example by [@lsaffie](https://github.com/lsaffie) from [#221](https://github.com/colszowka/simplecov/issues/221)
443
+
Here's an example by [@lsaffie](https://github.com/lsaffie) from [#221](https://github.com/simplecov-ruby/simplecov/issues/221)
444
444
that shows how you can achieve just that:
445
445
446
446
```ruby
@@ -856,7 +856,7 @@ with them, you'll find that it often misreports coverage with the default config
0 commit comments