module DailyReporter

Constants

SETTINGS_DIRECTORY

Public Class Methods

add_task(task) click to toggle source
# File lib/daily_reporter.rb, line 8
def add_task(task)
  Task.add(task)
end
bootstrap() click to toggle source
# File lib/daily_reporter.rb, line 16
def bootstrap
  Settings.init
end
report() click to toggle source
# File lib/daily_reporter.rb, line 4
def report
  Mail.send_status
end
tasks_list() click to toggle source
# File lib/daily_reporter.rb, line 12
def tasks_list
  puts Task.status
end