module RainforestQA::Modules::Schedules

Public Instance Methods

delete_schedule(id, options = {}) click to toggle source
# File lib/rainforestqa/modules/schedules.rb, line 16
def delete_schedule(id, options = {})
  perform(:delete, "schedules/#{id}", options)
end
get_schedule(id, options ={}) click to toggle source
# File lib/rainforestqa/modules/schedules.rb, line 12
def get_schedule(id, options ={})
  perform(:get, "schedules/#{id}", options)
end
schedules(options ={}) click to toggle source
# File lib/rainforestqa/modules/schedules.rb, line 8
def schedules(options ={})
  perform(:get, "schedules", options)
end
update_schedule(id, attributes) click to toggle source
# File lib/rainforestqa/modules/schedules.rb, line 20
def update_schedule(id, attributes)
  perform(:put, "schedules/#{id}", attributes )
end