class Eligible::CoverageResource

Public Class Methods

batch_post(params, api_key = nil)
Alias for: post
get(params, api_key = nil) click to toggle source
# File lib/eligible/coverage_resource.rb, line 3
def self.get(params, api_key = nil)
  send_request(:get, get_uri, api_key, params)
end
get_uri() click to toggle source
# File lib/eligible/coverage_resource.rb, line 11
def self.get_uri
  fail NotImplementedError, "Please implement class method #{self}.get_uri"
end
post(params, api_key = nil) click to toggle source
# File lib/eligible/coverage_resource.rb, line 7
def self.post(params, api_key = nil)
  send_request(:post, post_uri, api_key, params)
end
Also aliased as: batch_post
post_uri() click to toggle source
# File lib/eligible/coverage_resource.rb, line 15
def self.post_uri
  fail NotImplementedError, "Please implement class method #{self}.post_uri"
end