class Seekr::Monitor

Public Instance Methods

all() click to toggle source
# File lib/seekr/monitor.rb, line 5
def all
  get("/searches")
end
find(id) click to toggle source
# File lib/seekr/monitor.rb, line 9
def find(id)
  get("/search", search_id: id)
end
tags(id) click to toggle source
# File lib/seekr/monitor.rb, line 13
def tags(id)
  get("/tags", search_id: id)
end