class Rake::Task

def set_arg_names(args)

an array of symbols, one for each argument name.
Set the names of the arguments for this task. +args+ should be
def set_arg_names(args)
  @arg_names = args.map { |a| a.to_sym }
end