ealeksandrov-cd-to: Fix RuboCop Performance/MapCompact offenses

This commit is contained in:
Issy Long
2024-02-26 15:16:21 +00:00
parent b0dc312a0d
commit 8488c041a2
+1 -1
View File
@@ -11,7 +11,7 @@ cask "ealeksandrov-cd-to" do
url :url
regex(/^v?(\d+(?:[._]\d+)+)$/i)
strategy :git do |tags, regex|
tags.map { |tag| tag[regex, 1]&.tr("_", ".") }.compact
tags.filter_map { |tag| tag[regex, 1]&.tr("_", ".") }
end
end