Method: Sculd::Plan::Reminder#priority

Defined in:
lib/sculd/plan/reminder.rb

#priority(today = Date.now) ⇒ Object

value of @option does not work



15
16
17
18
19
20
21
22
# File 'lib/sculd/plan/reminder.rb', line 15

def priority(today = Date.now)
  if today < @datetime
    return 0
  else
    #@option = 1 if @option < 1
    return Sculd::Plan::REMINDER_PRIORITY - (today - @datetime) #/@option
  end
end