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