Class: Pikuri::Tasks::Item

Inherits:
Data
  • Object
show all
Defined in:
lib/pikuri/tasks/list.rb

Overview

One row in a List. id is the numeric identifier the mutation tools address the item by (assigned by List#add, never reused —see there); content is the LLM-visible task text; status is one of STATUSES.

Instance Attribute Summary collapse

Instance Attribute Details

#contentObject (readonly)

Returns the value of attribute content

Returns:

  • (Object)

    the current value of content



31
32
33
# File 'lib/pikuri/tasks/list.rb', line 31

def content
  @content
end

#idObject (readonly)

Returns the value of attribute id

Returns:

  • (Object)

    the current value of id



31
32
33
# File 'lib/pikuri/tasks/list.rb', line 31

def id
  @id
end

#statusObject (readonly)

Returns the value of attribute status

Returns:

  • (Object)

    the current value of status



31
32
33
# File 'lib/pikuri/tasks/list.rb', line 31

def status
  @status
end