可変長引数をシンボルのArrayとして受け取る。

def some_method(arg1, *args)
   values = args.to_a.flatten.compact.map(&:to_sym)
   ...
end
続きを追記していく予定