get_gem_owners
Retrieve ownership details for a specific RubyGem using the RubyGems.org API. Input the gem name to fetch its owners, aiding in package management and collaboration.
Instructions
Get the owners of a specific RubyGem
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": {
"gem_name": {
"description": "Name of the RubyGem to fetch owners for",
"minLength": 1,
"type": "string"
}
},
"required": [
"gem_name"
],
"type": "object"
},
"type": "object"
}