module Goldfinger::Utils

Public Instance Methods

perform_get(path, options = {}) click to toggle source
# File lib/goldfinger/utils.rb, line 5
def perform_get(path, options = {})
  perform_request(:get, path, options)
end
perform_request(request_method, path, options = {}) click to toggle source
# File lib/goldfinger/utils.rb, line 9
def perform_request(request_method, path, options = {})
  Goldfinger::Request.new(request_method, path, options).perform
end