From fe3fca2ece4225e1c0ddb9a3cb628f829f0c1b0c Mon Sep 17 00:00:00 2001 From: Jan Grodowski Date: Sun, 15 Dec 2024 11:06:59 +0100 Subject: [PATCH] Add db/ to default excludes (#217) --- lib/undercover/options.rb | 2 +- lib/undercover/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/undercover/options.rb b/lib/undercover/options.rb index ef43498..9938f23 100644 --- a/lib/undercover/options.rb +++ b/lib/undercover/options.rb @@ -18,7 +18,7 @@ class Options # rubocop:disable Metrics/ClassLength ].freeze DEFAULT_FILE_INCLUDE_GLOBS = %w[*.rb *.rake *.ru Rakefile].freeze - DEFAULT_FILE_EXCLUDE_GLOBS = %w[test/* spec/* *_test.rb *_spec.rb].freeze + DEFAULT_FILE_EXCLUDE_GLOBS = %w[test/* spec/* db/* *_test.rb *_spec.rb].freeze attr_accessor :lcov, :path, diff --git a/lib/undercover/version.rb b/lib/undercover/version.rb index e1eab32..49d5f72 100644 --- a/lib/undercover/version.rb +++ b/lib/undercover/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Undercover - VERSION = '0.6.1' + VERSION = '0.6.2' end