get_rubygem_info
Fetch detailed metadata about a RubyGem from RubyGems.org API using the input gem name. Retrieve information such as dependencies, ownership, and package details for efficient Ruby development workflows.
Instructions
Get information about a RubyGem from the RubyGems.org API
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": {
"rubygem_name": {
"description": "Name of the RubyGem to fetch information for",
"minLength": 1,
"type": "string"
}
},
"required": [
"rubygem_name"
],
"type": "object"
},
"type": "object"
}