Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v3.2.13) is shown here.
delete(path, headers = {})
public
Executes a DELETE request (see HTTP
protocol documentation if unfamiliar). Used to delete resources.
# File activeresource/lib/active_resource/connection.rb, line 85
def delete(path, headers = {})
with_auth { request(:delete, path, build_request_headers(headers, :delete, self.site.merge(path))) }
end