From e6d66bf45d2ccc49961acc1e02c3b6b02ab1f49f Mon Sep 17 00:00:00 2001 From: exoego Date: Tue, 27 Jun 2023 14:55:44 +0900 Subject: [PATCH] fix minor issues --- .simplecov_spawn.rb | 6 ++++-- Gemfile | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.simplecov_spawn.rb b/.simplecov_spawn.rb index 511ce732..4243ef7e 100644 --- a/.simplecov_spawn.rb +++ b/.simplecov_spawn.rb @@ -1,4 +1,6 @@ -unless ENV["COVERAGE"] && ENV["COVERAGE"].empty? +# frozen_string_literal: true + +unless ENV['COVERAGE'] && ENV['COVERAGE'].empty? require 'simplecov' require 'simplecov-cobertura' @@ -6,4 +8,4 @@ SimpleCov.at_fork.call(Process.pid) SimpleCov.formatter SimpleCov::Formatter::CoberturaFormatter SimpleCov.start -end \ No newline at end of file +end diff --git a/Gemfile b/Gemfile index cc9124e7..897b4735 100644 --- a/Gemfile +++ b/Gemfile @@ -10,9 +10,9 @@ gem 'roda' gem 'rspec-rails' group :test do - gem 'super_diff' gem 'simplecov' gem 'simplecov-cobertura' + gem 'super_diff' end group :development do