module Glassfrog::REST::Delete

Encapsulates all DELETE requests.

Public Class Methods

delete(client, path, options) click to toggle source

Sends a DELETE request. @param client [Glassfrog::Client] Client that will send the request. @param path [String] Path to send request to. @param options [Hash] Options being sent in the request.

@return [Boolean] Whether request was successful.

# File lib/glassfrog/rest/delete.rb, line 16
def self.delete(client, path, options)
  Glassfrog::REST::Request.new(client, :delete, path, options).perform
end