class TodoTxtViewer::HeaderLine

Public Class Methods

new(header) click to toggle source
# File lib/todo_txt_viewer/header_line.rb, line 5
def initialize header
  @header = header.to_s
end

Public Instance Methods

task_action(action) click to toggle source
# File lib/todo_txt_viewer/header_line.rb, line 13
def task_action(action) end
to_s() click to toggle source
# File lib/todo_txt_viewer/header_line.rb, line 9
def to_s
  @header
end