get_owner_gems
Retrieve all RubyGems owned by a specific user or organization using the RubyGems API. Input the owner’s username to fetch a detailed list of associated gems.
Instructions
Get all RubyGems owned by a specific user or organization
Input Schema
Name | Required | Description | Default |
---|---|---|---|
$schema | No | ||
additionalProperties | No | ||
properties | No | ||
required | No | ||
type | No |
Input Schema (JSON Schema)
{
"properties": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"owner_name": {
"description": "Username of the RubyGem owner to fetch gems for",
"minLength": 1,
"type": "string"
}
},
"required": [
"owner_name"
],
"type": "object"
},
"type": "object"
}