Skip to content
代码片段 群组 项目
提交 94c24c3e 编辑于 作者: Lin Jen-Shin's avatar Lin Jen-Shin
浏览文件

Update for Ruby 3.0 compatibility

上级 3ac48109
No related branches found
No related tags found
无相关合并请求
...@@ -8,13 +8,13 @@ def execute ...@@ -8,13 +8,13 @@ def execute
load_definitions.each do |section, group_defintions| load_definitions.each do |section, group_defintions|
puts section puts section
group_defintions.each do |group, allow:, deny:| group_defintions.each do |group, list|
matched_files = git_ls_files.each_line.select do |line| matched_files = git_ls_files.each_line.select do |line|
allow.find do |pattern| list[:allow].find do |pattern|
path = "/#{line.chomp}" path = "/#{line.chomp}"
path_matches?(pattern, path) && path_matches?(pattern, path) &&
deny.none? { |pattern| path_matches?(pattern, path) } list[:deny].none? { |pattern| path_matches?(pattern, path) }
end end
end end
...@@ -45,9 +45,9 @@ def load_definitions ...@@ -45,9 +45,9 @@ def load_definitions
result.each do |section, group_defintions| result.each do |section, group_defintions|
group_defintions.each do |group, definitions| group_defintions.each do |group, definitions|
definitions.transform_values! do |keywords:, patterns:| definitions.transform_values! do |rules|
keywords.flat_map do |keyword| rules[:keywords].flat_map do |keyword|
patterns.map do |pattern| rules[:patterns].map do |pattern|
pattern % { keyword: keyword } pattern % { keyword: keyword }
end end
end end
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册