Method: Runcible::Resources::Repository.delete_importer

Defined in:
lib/runcible/resources/repository.rb

.delete_importer(id, importer_id) ⇒ RestClient::Response

Deletes the specified importer from the repository

Parameters:

  • the id of the repository

  • the id of the importer

Returns:



198
199
200
# File 'lib/runcible/resources/repository.rb', line 198

def self.delete_importer(id, importer_id)
  call(:delete, "#{path(id)}/importers/#{importer_id}/")
end