set_arg_names(args)
Set the names of the arguments for this task. args should be an array of symbols, one for each argument name.
# File lib/rake/task.rb, line 253 def set_arg_names(args) @arg_names = args.map { |a| a.to_sym } end