in retrospective.rb [83:90]
def correct_date?(action, release)
if action == 'create'
Date.today - Date.parse(release['start_date']) == 9
elsif action == 'update'
Date.today - Date.parse(release['due_date']) == 4
end
end