class Artifactory::Resource::Plugin
Public Class Methods
all(options = {})
click to toggle source
Get a list of all plugins in the system.
@param [Hash] options
the list of options
@option options [Artifactory::Client] :client
the client object to make the request with
@return [Array<Resource::Plugin>]
the list of builds
# File lib/artifactory/resources/plugin.rb, line 32 def all(options = {}) client = extract_client!(options) client.get("/api/plugins") end