From d428717b9ba3ad945216bce5ddcef9ffac7a9824 Mon Sep 17 00:00:00 2001 From: Benjamin Quorning Date: Tue, 26 May 2026 21:45:07 +0200 Subject: [PATCH] Document explicit receiver in .simplecov file In the next version of simplecov, all method calls in .simplecov must have an explicit `SimpleCov` receiver. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fa08af68..a4b8b808 100644 --- a/README.md +++ b/README.md @@ -319,8 +319,8 @@ starts it: ```ruby # .simplecov — configuration only SimpleCov.profiles.load 'rails' -skip 'lib/generators' -group 'Models', 'app/models' +SimpleCov.skip 'lib/generators' +SimpleCov.group 'Models', 'app/models' # spec/spec_helper.rb require 'simplecov'