Apply RuboCop auto-correct

This commit is contained in:
GitHub Action 2023-07-28 01:43:49 +00:00
parent fc77d56cc8
commit a4c9b77c1e
4 changed files with 12 additions and 10 deletions

4
.bundle/config Normal file
View File

@ -0,0 +1,4 @@
---
BUNDLE_PATH: "/home/runner/work/Ru-b2-SQL-Backups/Ru-b2-SQL-Backups/vendor/bundle"
BUNDLE_DEPLOYMENT: "true"
BUNDLE_JOBS: "4"

12
Gemfile
View File

@ -1,6 +1,6 @@
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rubocop', '1.46.0'
gem 'json', '2.6.3'
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'json', '2.6.3'
gem 'rubocop', '1.46.0'

View File

@ -58,9 +58,7 @@ class Loggman
def delete_old_logs
Dir.glob(File.join(@log_dir, "#{LOG_PREFIX}-*.log")).each do |logfile|
if Time.now - File.mtime(logfile) > MAX_LOG_AGE
FileUtils.rm(logfile)
end
FileUtils.rm(logfile) if Time.now - File.mtime(logfile) > MAX_LOG_AGE
end
end
end

View File

@ -72,7 +72,7 @@ class MysqlDatabaseConfig
private
def prompt(message, default: nil)
print message.to_s
print message
print " [#{default}]" if default
print ': '
value = gets.chomp