From e630e528bcfe4807164f4b38dcc1974d12ed7933 Mon Sep 17 00:00:00 2001 From: Taichi Ishitani Date: Tue, 12 Dec 2023 09:49:02 +0900 Subject: [PATCH] fix rubocop offense --- lib/flgen/file_list.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/flgen/file_list.rb b/lib/flgen/file_list.rb index 6e3d929..6fdb280 100644 --- a/lib/flgen/file_list.rb +++ b/lib/flgen/file_list.rb @@ -117,7 +117,7 @@ def add_entry(path, from, raise_error, method_name, location) return end - @context.__send__("add_#{method_name}".to_sym, extracted_path) + @context.__send__("add_#{method_name}", extracted_path) end def raise_no_entry_error(path, location, raise_error)