class Fog::Tasks::Wunderlist::Tasks

Public Instance Methods

all() click to toggle source
# File lib/fog/wunderlist/models/tasks/tasks.rb, line 11
def all
  load service.list_tasks.body
end
get(id) click to toggle source
# File lib/fog/wunderlist/models/tasks/tasks.rb, line 15
def get(id)
  all.find { |t| t.id == id }
end