class Artifactory::Resource::BuildComponent

def find(name, options = {})

Returns:
  • (Resource::BuildComponent, nil) -

Options Hash: (**options)
  • :client (Artifactory::Client) --

Parameters:
  • options (Hash) --
  • name (String) --

Other tags:
    Example: Find a particular build component -
def find(name, options = {})
  client = extract_client!(options)
  all.find do |component|
    component.name == name
  end
end