/* 
 *	call-seq:
 *		new() -> EvTask
 *		
 * Creates a new EvTask object
 *
 * Attributes:
 *  @uid - a unique id for this task
 *  @summary
 *  @description
 *  @start - the start Time
 *  @due - the due Time
 *  @status - 'Not started', 'In progress', 'Completed', 'Cancelled'
 *  @priority - 'Low', 'Medium', 'High', or nil
 *  @last_modification - Time of last modification
 */
static VALUE evTask_init(VALUE self) {