From 907fbd6f1e89ca36642ee4e58dc60c433d59f215 Mon Sep 17 00:00:00 2001 From: Jarek Radosz Date: Wed, 13 Nov 2024 01:47:10 +0100 Subject: [PATCH] DEV: Fix ruby linting (#29731) --- script/import_scripts/vbulletin3.rb | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/script/import_scripts/vbulletin3.rb b/script/import_scripts/vbulletin3.rb index bc18955e03b..278732190f1 100644 --- a/script/import_scripts/vbulletin3.rb +++ b/script/import_scripts/vbulletin3.rb @@ -22,25 +22,25 @@ class ImportScripts::VBulletin < ImportScripts::Base # CHANGE THESE BEFORE RUNNING THE IMPORTER - DB_HOST ||= ENV["DB_HOST"] || "localhost" - DB_NAME ||= ENV["DB_NAME"] || "vbulletin" - DB_PW ||= ENV["DB_PW"] || "" - DB_USER ||= ENV["DB_USER"] || "root" - TIMEZONE ||= ENV["TIMEZONE"] || "America/Los_Angeles" - TABLE_PREFIX ||= ENV["TABLE_PREFIX"] || "vb_" - ATTACHMENT_DIR ||= ENV["ATTACHMENT_DIR"] || "/path/to/your/attachment/folder" - IMAGES_DIR ||= ENV["IMAGES_DIR"] || "/path/to/your/images/folder" + DB_HOST = ENV["DB_HOST"] || "localhost" + DB_NAME = ENV["DB_NAME"] || "vbulletin" + DB_PW = ENV["DB_PW"] || "" + DB_USER = ENV["DB_USER"] || "root" + TIMEZONE = ENV["TIMEZONE"] || "America/Los_Angeles" + TABLE_PREFIX = ENV["TABLE_PREFIX"] || "vb_" + ATTACHMENT_DIR = ENV["ATTACHMENT_DIR"] || "/path/to/your/attachment/folder" + IMAGES_DIR = ENV["IMAGES_DIR"] || "/path/to/your/images/folder" # Hostname + path of the forum. Used to transform deeplinks to posts and attachments to internal links - FORUM_URL ||= ENV["FORUM_URL"] || "localhost/" + FORUM_URL = ENV["FORUM_URL"] || "localhost/" # vBulletin forum ID to make to pre-seeded categories - FORUM_GENERAL_ID ||= ENV["FORUM_GENERAL_ID"].to_i || -1 - FORUM_FEEDBACK_ID ||= ENV["FORUM_FEEDBACK_ID"].to_i || -1 - FORUM_STAFF_ID ||= ENV["FORUM_STAFF_ID"].to_i || -1 + FORUM_GENERAL_ID = ENV["FORUM_GENERAL_ID"].to_i || -1 + FORUM_FEEDBACK_ID = ENV["FORUM_FEEDBACK_ID"].to_i || -1 + FORUM_STAFF_ID = ENV["FORUM_STAFF_ID"].to_i || -1 # If non zero, create a user field containing the user title - CREATE_USERTITLE_FIELD ||= ENV["CREATE_USERTITLE_FIELD"].to_i != 0 || false + CREATE_USERTITLE_FIELD = ENV["CREATE_USERTITLE_FIELD"].to_i != 0 || false # You might also want to change the title and message for the imported private message archive # search for "PM ARCHIVE MESSAGE" in this script