Auto-fix Layout/CommentIndentation offenses

This commit is contained in:
Issy Long 2019-10-13 10:12:59 +01:00
parent 489ba3f462
commit 7193229b42
No known key found for this signature in database
GPG Key ID: 8247C390DADC67D4

View File

@ -128,8 +128,8 @@ class Keg
keg_names = kegs.select(&:optlinked?).map(&:name) keg_names = kegs.select(&:optlinked?).map(&:name)
keg_formulae = [] keg_formulae = []
kegs_by_source = kegs.group_by do |keg| kegs_by_source = kegs.group_by do |keg|
# First, attempt to resolve the keg to a formula # First, attempt to resolve the keg to a formula
# to get up-to-date name and tap information. # to get up-to-date name and tap information.
f = keg.to_formula f = keg.to_formula
keg_formulae << f keg_formulae << f
[f.name, f.tap] [f.name, f.tap]