class Tardef::Task

Attributes

changed_at[RW]
created_at[RW]
done_at[RW]
due_at[RW]
hidden[RW]
list[RW]
tags[RW]

Public Class Methods

new(uid, title, created_at, description = "", changed_at = "", done_at = "", due_at = "", hidden = false, list = "", tags = []) click to toggle source
Calls superclass method Tardef::Base::new
# File lib/tardef/object.rb, line 22
def initialize(uid, title, created_at, description = "", changed_at = "", done_at = "", due_at = "", hidden = false, list = "", tags = [])
  super()
  @uid, @title, @description, @list = uid, title, description, list
  @changed_at, @created_at, @done_at = changed_at, created_at, done_at
  @due_at, @hidden, @tags = due_at, hidden, tags
end