rubocop: fix various style issues.

This commit is contained in:
evazion
2019-12-22 16:21:58 -06:00
parent 09f6a84660
commit 309821bf73
288 changed files with 912 additions and 962 deletions

6
script/fixes/025_last_commented_at.rb Normal file → Executable file
View File

@@ -4,8 +4,8 @@ require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'config',
ActiveRecord::Base.connection.execute("set statement_timeout = 0")
0.upto(1585206 / 1000) do |i|
puts "updating posts #{i * 1000} to #{(i+1) * 1000}"
ActiveRecord::Base.connection.execute("update posts set last_commented_at = (select c.created_at from comments c where c.post_id = posts.id order by c.id desc limit 1) where posts.id between #{i * 1000} and #{(i+1) * 1000}")
puts "updating posts #{i * 1000} to #{(i + 1) * 1000}"
ActiveRecord::Base.connection.execute("update posts set last_commented_at = (select c.created_at from comments c where c.post_id = posts.id order by c.id desc limit 1) where posts.id between #{i * 1000} and #{(i + 1) * 1000}")
end
TagImplication.find_each do |ti|
@@ -13,7 +13,7 @@ TagImplication.find_each do |ti|
if ta
puts "testing alias #{ta.antecedent_name} -> #{ta.consequent_name}"
existing_ti = TagImplication.where("antecedent_name = ? AND consequent_name = ?", ta.consequent_name, ti.consequent_name).first
existing_ti.destroy if existing_ti
existing_ti&.destroy
if ta.consequent_name == ti.consequent_name
puts " deleting implication #{ti.antecedent_name} -> #{ti.consequent_name}"